IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
Returns the device unique ID for the data stream. Corresponds to the STREAM_INFO_ID command of "DSGetInfo" function.
Name |
StreamID |
Category |
|
Interface |
String |
Access |
Read |
Unit |
- |
Visibility |
Expert |
Values |
- |
Standard |
GenTL SFNC |
Availability uEye+ |
|
Availability uEye |
|
Code Example
C++
// Determine the current StreamID
std::string value = nodeMapDataStream->FindNode<peak::core::nodes::StringNode>("StreamID")->Value();
C#
// Determine the current StreamID
string value = nodeMapDataStream.FindNode<peak.core.nodes.StringNode>("StreamID").Value();
Python
# Determine the current StreamID (str)
value = nodeMapDataStream.FindNode("StreamID").Value()