ConcentratorBaseAssignMeasurementToFrame Method
Namespace: Gemstone.TimeseriesAssembly: Gemstone.Timeseries (in Gemstone.Timeseries.dll) Version: 1.0.147 -- Release Build+281cd9d48f79fa48c22e33d1c46c4d7bdd95f1cf
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;