|
PacketBaseGenerateBinaryImage Method
|
Generates binary image of the packet and copies it into the given buffer, for
BinaryLength bytes.
Namespace: GSF.Historian.PacketsAssembly: GSF.Historian (in GSF.Historian.dll) Version: 2.4.207-beta
Syntax public abstract int GenerateBinaryImage(
byte[] buffer,
int startIndex
)
Public MustOverride Function GenerateBinaryImage (
buffer As Byte(),
startIndex As Integer
) As Integer
public:
virtual int GenerateBinaryImage(
array<unsigned char>^ buffer,
int startIndex
) abstract
abstract GenerateBinaryImage :
buffer : byte[] *
startIndex : int -> int
function GenerateBinaryImage(buffer, startIndex);
View SourceParameters
- buffer Byte
- Buffer used to hold generated binary image of the source object.
- startIndex Int32
- 0-based starting index in the buffer to start writing.
Return Value
Int32The number of bytes written to the
buffer.
Implements
ISupportBinaryImageGenerateBinaryImage(Byte, Int32)Remarks See Also