Click or drag to resize

ConcentratorBaseAssignMeasurementToFrame Method

Assigns IMeasurement to its associated IFrame.

Namespace: GSF.TimeSeries
Assembly: GSF.TimeSeries (in GSF.TimeSeries.dll) Version: 2.4.181-beta
Syntax
protected virtual void AssignMeasurementToFrame(
	IFrame frame,
	IMeasurement measurement
)
View Source

Parameters

frame  IFrame
The IFrame that is used.
measurement  IMeasurement
The type of IMeasurement to use."/>
Remarks
Derived classes can choose to override this method to handle custom assignment of a IMeasurement to its IFrame. Default behavior simply assigns measurement to frame's keyed measurement dictionary:
C#
frame.Measurements[measurement.Key] = measurement;
See Also