|   | BinaryImageBaseGenerateBodyImage Method | 
        
        
            Generates the binary body image and copies it into the given buffer, for 
BodyLength bytes.
            
 GSF.Core (in GSF.Core.dll) Version: 2.4.257-beta+00aa2366fbb9ec75f636ebc7cfa610e3826a727c
 Syntax
Syntaxprotected virtual int GenerateBodyImage(
	byte[] buffer,
	int startIndex
)
Protected Overridable Function GenerateBodyImage ( 
	buffer As Byte(),
	startIndex As Integer
) As Integer
protected:
virtual int GenerateBodyImage(
	array<unsigned char>^ buffer, 
	int startIndex
)
abstract GenerateBodyImage : 
        buffer : byte[] * 
        startIndex : int -> int 
override GenerateBodyImage : 
        buffer : byte[] * 
        startIndex : int -> int function GenerateBodyImage(buffer, startIndex);
Parameters
- buffer  Byte
- Buffer used to hold generated binary image of the source object.
- startIndex  Int32
- 0-based starting index in the buffer to start writing.
Return Value
Int32The number of bytes written to the 
buffer.
 Remarks
Remarks
            This method is typically overridden by a specific protocol implementation.
            
 See Also
See Also