ConcentratorBaseAssignMeasurementToFrame Method

Assigns IMeasurement to its associated IFrame.

Definition

Namespace: Gemstone.Timeseries
Assembly: Gemstone.Timeseries (in Gemstone.Timeseries.dll) Version: 1.0.128 -- Release Build+e2476c52e94864f123f37e60764c948e49eb89eb
protected virtual void AssignMeasurementToFrame(
	IFrame frame,
	IMeasurement measurement
)

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