|   | BinaryImageBaseParseBinaryImage Method | 
        
        
            Initializes object by parsing the specified buffer containing a binary image.
            
        
        Namespace: GSF.ParsingAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.257-beta+00aa2366fbb9ec75f636ebc7cfa610e3826a727c
 Syntax
Syntaxpublic virtual int ParseBinaryImage(
	byte[] buffer,
	int startIndex,
	int length
)
Public Overridable Function ParseBinaryImage ( 
	buffer As Byte(),
	startIndex As Integer,
	length As Integer
) As Integer
public:
virtual int ParseBinaryImage(
	array<unsigned char>^ buffer, 
	int startIndex, 
	int length
)
abstract ParseBinaryImage : 
        buffer : byte[] * 
        startIndex : int * 
        length : int -> int 
override ParseBinaryImage : 
        buffer : byte[] * 
        startIndex : int * 
        length : int -> int function ParseBinaryImage(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).
Implements
ISupportBinaryImageParseBinaryImage(Byte, Int32, Int32) Exceptions
Exceptions| Exception | Condition | 
|---|
| ArgumentNullException | buffer is null. | 
| ArgumentOutOfRangeException | startIndex or length is less than 0 -or- 
            startIndex and length will exceed buffer length. | 
 Remarks
Remarks
            This method is not typically overridden since it is parses the header, body and footer images in sequence.
            
 See Also
See Also