|   | DataFrameAppendChecksum Method | 
        
        
            Appends checksum onto buffer starting at startIndex.
            
        
        Namespace: GSF.PhasorProtocols.BPAPDCstreamAssembly: GSF.PhasorProtocols (in GSF.PhasorProtocols.dll) Version: 2.4.257-beta
 Syntax
Syntaxprotected override void AppendChecksum(
	byte[] buffer,
	int startIndex
)
Protected Overrides Sub AppendChecksum ( 
	buffer As Byte(),
	startIndex As Integer
)
protected:
virtual void AppendChecksum(
	array<unsigned char>^ buffer, 
	int startIndex
) override
abstract AppendChecksum : 
        buffer : byte[] * 
        startIndex : int -> unit 
override AppendChecksum : 
        buffer : byte[] * 
        startIndex : int -> unit function AppendChecksum(buffer, startIndex);
Parameters
- buffer  Byte
- Buffer image on which to append checksum.
- startIndex  Int32
- Index into buffer where checksum should be appended.
 Remarks
Remarks
            We override default implementation since BPA PDCstream implements check sum for frames in little-endian.
            
 See Also
See Also