IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
Returns the size of the expected data. Corresponds to the STREAM_INFO_PAYLOAD_SIZE command of "DSGetInfo" function.
Note that this feature "overwrites" the PayloadSize of the RemoteDevice, see also "DataPayload Delivery" and "Allocate Memory" of the GenICam GenTL standard.
Name |
PayloadSize |
Category |
|
Interface |
Integer |
Access |
Read |
Unit |
Byte |
Visibility |
Expert |
Values |
0 … 4294967295 Increment: 1 |
Standard |
GenTL SFNC |
Availability uEye+ |
|
Availability uEye |
- |
Code Example
C++
// Determine the current PayloadSize
int64_t value = nodeMapDataStream->FindNode<peak::core::nodes::IntegerNode>("PayloadSize")->Value();
C#
// Determine the current PayloadSize
long value = nodeMapDataStream.FindNode<peak.core.nodes.IntegerNode>("PayloadSize").Value();
Python
# Determine the current PayloadSize (int)
value = nodeMapDataStream.FindNode("PayloadSize").Value()