|   | BinaryImageBaseParseBodyImage Method | 
        
        
            Parses the binary body image.
            
        
        Namespace: GSF.ParsingAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.257-beta+00aa2366fbb9ec75f636ebc7cfa610e3826a727c
 Syntax
Syntaxprotected virtual int ParseBodyImage(
	byte[] buffer,
	int startIndex,
	int length
)
Protected Overridable Function ParseBodyImage ( 
	buffer As Byte(),
	startIndex As Integer,
	length As Integer
) As Integer
protected:
virtual int ParseBodyImage(
	array<unsigned char>^ 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);
Parameters
- buffer  Byte
- Buffer containing binary image to parse.
- startIndex  Int32
- 0-based starting index in the buffer to start parsing.
- length  Int32
- Valid number of bytes within buffer from startIndex.
Return Value
Int32The number of bytes used for initialization in the 
buffer (i.e., the number of bytes parsed).
 Remarks
Remarks
            This method is typically overridden by a specific protocol implementation.
            
 See Also
See Also