Returns the number of network adapters that are connected to this interface.
Name |
NetworkAdapterCount |
Category |
|
Interface |
Integer |
Access |
Read |
Unit |
- |
Visibility |
Guru |
Values |
unsigned int 4-byte |
Standard |
IDS |
Availability uEye+ |
|
Availability uEye |
- |
Code Example
C++
// Determine the current NetworkAdapterCount
int64_t value = nodeMapInterface->FindNode<peak::core::nodes::IntegerNode>("NetworkAdapterCount")->Value();
C#
// Determine the current NetworkAdapterCount
long value = nodeMapInterface.FindNode<peak.core.nodes.IntegerNode>("NetworkAdapterCount").Value();
Python
# Determine the current NetworkAdapterCount (int)
value = nodeMapInterface.FindNode("NetworkAdapterCount").Value()