|
ChannelFrameBaseTChecksumIsValid Method
|
Determines if checksum in the buffer is valid.
Namespace: GSF.PhasorProtocolsAssembly: GSF.PhasorProtocols (in GSF.PhasorProtocols.dll) Version: 2.4.205-beta
Syntax protected virtual bool ChecksumIsValid(
byte[] buffer,
int startIndex
)
Protected Overridable Function ChecksumIsValid (
buffer As Byte(),
startIndex As Integer
) As Boolean
abstract ChecksumIsValid :
buffer : byte[] *
startIndex : int -> bool
override ChecksumIsValid :
buffer : byte[] *
startIndex : int -> bool
function ChecksumIsValid(buffer, startIndex);
View SourceParameters
- 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
Default implementation expects 2-byte big-endian ordered checksum. Override method if protocol checksum
implementation is different.
See Also