|   | DataCellParseBodyImage Method | 
        
        
            Parses the binary body image.
            
        
        Namespace: GSF.PhasorProtocols.FNETAssembly: GSF.PhasorProtocols (in GSF.PhasorProtocols.dll) Version: 2.4.257-beta
 Syntax
Syntaxprotected override int ParseBodyImage(
	byte[] buffer,
	int startIndex,
	int length
)
Protected Overrides 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
) override
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
- 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
Remarks
            The longitude, latitude and number of satellites arrive at the top of minute in F-NET data as the analog
            data in a single row, each on their own row, as sample 1, 2, and 3 respectively.
            
 See Also
See Also