|   | ConfigurationFrameChecksumIsValid Method | 
        
        
            Determines if checksum in the buffer is valid.
            
        
        Namespace: GSF.PhasorProtocols.SelFastMessageAssembly: GSF.PhasorProtocols (in GSF.PhasorProtocols.dll) Version: 2.4.257-beta
 Syntax
Syntaxprotected override bool ChecksumIsValid(
	byte[] buffer,
	int startIndex
)
Protected Overrides Function ChecksumIsValid ( 
	buffer As Byte(),
	startIndex As Integer
) As Boolean
protected:
virtual bool ChecksumIsValid(
	array<unsigned char>^ buffer, 
	int startIndex
) override
abstract ChecksumIsValid : 
        buffer : byte[] * 
        startIndex : int -> bool 
override ChecksumIsValid : 
        buffer : byte[] * 
        startIndex : int -> bool function ChecksumIsValid(buffer, startIndex);
Parameters
- buffer  Byte
- Buffer image to validate.
- startIndex  Int32
- Start index into buffer to perform checksum.
Return Value
BooleanFlag that determines if checksum over 
buffer is valid.
 Remarks
Remarks
            SEL Fast Message doesn't define a binary configuration frame - so no checksum is defined - this always returns true.
            
 See Also
See Also