|
ActionAdapterBaseTryGetMinimumNeededMeasurements Method
|
Attempts to retrieve the minimum needed number of measurements from the frame (as specified by MinimumMeasurementsToUse)
Namespace: GSF.TimeSeries.AdaptersAssembly: GSF.TimeSeries (in GSF.TimeSeries.dll) Version: 2.4.205-beta
Syntax Protected Overridable Function TryGetMinimumNeededMeasurements (
frame As IFrame,
ByRef measurements As IMeasurement()
) As Boolean
function TryGetMinimumNeededMeasurements(frame, measurements);
View SourceParameters
- frame IFrame
- Source frame for the measurements
- measurements IMeasurement
- Return array of measurements
Return Value
BooleanTrue if minimum needed number of measurements were returned in measurement array
Remarks
Remember this function will *only* return the minimum needed number of measurements, no more. If you want to use
all available measurements in your adapter you should just use Frame.Measurements.Values directly.
Note that the measurements array parameter will be created if the reference is null, otherwise if caller creates
array it must be sized to MinimumMeasurementsToUse
See Also