|
ConfigurationFrameParsingState Constructor
|
Namespace: GSF.PhasorProtocols.BPAPDCstreamAssembly: GSF.PhasorProtocols (in GSF.PhasorProtocols.dll) Version: 2.4.246-beta
Syntaxpublic ConfigurationFrameParsingState(
int parsedBinaryLength,
string configurationFileName,
CreateNewCellFunction<IConfigurationCell> createNewCellFunction,
bool trustHeaderLength,
bool validateCheckSum
)
Public Sub New (
parsedBinaryLength As Integer,
configurationFileName As String,
createNewCellFunction As CreateNewCellFunction(Of IConfigurationCell),
trustHeaderLength As Boolean,
validateCheckSum As Boolean
)
public:
ConfigurationFrameParsingState(
int parsedBinaryLength,
String^ configurationFileName,
CreateNewCellFunction<IConfigurationCell^>^ createNewCellFunction,
bool trustHeaderLength,
bool validateCheckSum
)
new :
parsedBinaryLength : int *
configurationFileName : string *
createNewCellFunction : CreateNewCellFunction<IConfigurationCell> *
trustHeaderLength : bool *
validateCheckSum : bool -> ConfigurationFrameParsingState
GSF.PhasorProtocols.BPAPDCstream.ConfigurationFrameParsingState = function(parsedBinaryLength, configurationFileName, createNewCellFunction, trustHeaderLength, validateCheckSum);
View SourceParameters
- parsedBinaryLength Int32
- Binary length of the ConfigurationFrame being parsed.
- configurationFileName String
- The required external BPA PDCstream INI based configuration file.
- createNewCellFunction CreateNewCellFunctionIConfigurationCell
- Reference to delegate to create new ConfigurationCell 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