IDS Peak comfortSDK, genericSDK, AFL, ICL, and IPL developer manuals are external documents.
Please contact us if you need these manuals.
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<IDSImaging.Peak.API.Core.Nodes.IntegerNode>("PayloadSize").Value();
Python
# Determine the current PayloadSize (int)
value = nodeMapDataStream.FindNode("PayloadSize").Value()