|
ChannelFrameParsingStateBaseT Constructor
|
Namespace: GSF.PhasorProtocolsAssembly: GSF.PhasorProtocols (in GSF.PhasorProtocols.dll) Version: 2.4.248-beta
Syntaxprotected ChannelFrameParsingStateBase(
int parsedBinaryLength,
CreateNewCellFunction<T> createNewCellFunction,
bool trustHeaderLength,
bool validateCheckSum
)
Protected Sub New (
parsedBinaryLength As Integer,
createNewCellFunction As CreateNewCellFunction(Of T),
trustHeaderLength As Boolean,
validateCheckSum As Boolean
)
protected:
ChannelFrameParsingStateBase(
int parsedBinaryLength,
CreateNewCellFunction<T>^ createNewCellFunction,
bool trustHeaderLength,
bool validateCheckSum
)
new :
parsedBinaryLength : int *
createNewCellFunction : CreateNewCellFunction<'T> *
trustHeaderLength : bool *
validateCheckSum : bool -> ChannelFrameParsingStateBase
GSF.PhasorProtocols.ChannelFrameParsingStateBase = function(parsedBinaryLength, createNewCellFunction, trustHeaderLength, validateCheckSum);
View SourceParameters
- parsedBinaryLength Int32
- Binary length of the IChannelFrame being parsed.
- createNewCellFunction CreateNewCellFunctionT
- Reference to delegate to create new IChannelCell instances.
- trustHeaderLength Boolean
- Determines if header lengths should be trusted over parsed byte count.
- validateCheckSum Boolean
- Determines if frame's check-sum should be validated.
See Also