|
PhasorValueBaseParseBodyImage Method
|
Parses the binary body image.
Namespace: GSF.PhasorProtocolsAssembly: GSF.PhasorProtocols (in GSF.PhasorProtocols.dll) Version: 2.4.205-beta
Syntax protected override int ParseBodyImage(
byte[] buffer,
int startIndex,
int length
)
abstract ParseBodyImage :
buffer : byte[] *
startIndex : int *
length : int -> int
override ParseBodyImage :
buffer : byte[] *
startIndex : int *
length : int -> int
function ParseBodyImage(buffer, startIndex, length);
View SourceParameters
- buffer Byte
- Binary image to parse.
- startIndex Int32
- Start index into buffer to begin parsing.
- length Int32
- Length of valid data within buffer.
Return Value
Int32The length of the data that was parsed.
Remarks
The base implementation assumes fixed integer values are represented as 16-bit signed
integers and floating point values are represented as 32-bit single-precision floating-point
values (i.e., short and float data types respectively).
See Also