ConcentratorBaseAssignMeasurementToFrame Method
Namespace: Gemstone.TimeseriesAssembly: Gemstone.Timeseries (in Gemstone.Timeseries.dll) Version: 1.0.128 -- Release Build+e2476c52e94864f123f37e60764c948e49eb89eb
Protected Overridable Sub AssignMeasurementToFrame (
frame As IFrame,
measurement As IMeasurement
)
protected:
virtual void AssignMeasurementToFrame(
IFrame^ frame,
IMeasurement^ measurement
)
function AssignMeasurementToFrame(frame, measurement);
Parameters
- frame IFrame
- The IFrame that is used.
- measurement IMeasurement
- The type of IMeasurement to use."/>
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:
frame.Measurements[measurement.Key] = measurement;