|
FrameParserParseCommonHeader Method
|
Namespace: GSF.PhasorProtocols.SelFastMessageAssembly: GSF.PhasorProtocols (in GSF.PhasorProtocols.dll) Version: 2.4.248-beta
Syntaxprotected override ICommonHeader<int> ParseCommonHeader(
byte[] buffer,
int offset,
int length
)
Protected Overrides Function ParseCommonHeader (
buffer As Byte(),
offset As Integer,
length As Integer
) As ICommonHeader(Of Integer)
protected:
virtual ICommonHeader<int>^ ParseCommonHeader(
array<unsigned char>^ buffer,
int offset,
int length
) override
abstract ParseCommonHeader :
buffer : byte[] *
offset : int *
length : int -> ICommonHeader<int>
override ParseCommonHeader :
buffer : byte[] *
offset : int *
length : int -> ICommonHeader<int>
function ParseCommonHeader(buffer, offset, length);
View SourceParameters
- buffer Byte
- Buffer containing data to parse.
- offset Int32
- Offset index into buffer that represents where to start parsing.
- length Int32
- Maximum length of valid data from offset.
Return Value
ICommonHeaderInt32The
ICommonHeaderTTypeIdentifier which includes a type ID for the
Type to be parsed.
Remarks
Derived classes need to provide a common header instance (i.e., class that implements ICommonHeaderTTypeIdentifier)
for the output types; this will primarily include an ID of the Type that the data image represents. This parsing is
only for common header information, actual parsing will be handled by output type via its ParseBinaryImage(Byte, Int32, Int32)
method. This header image should also be used to add needed complex state information about the output type being parsed if needed.
If there is not enough buffer available to parse common header (as determined by length), return null. Also, if
the protocol allows frame length to be determined at the time common header is being parsed and there is not enough buffer to parse
the entire frame, it will be optimal to prevent further parsing by returning null.
See Also