Write Measurement Method
- Updated2022-11-22
- 1 minute(s) read
Write Measurement Method
WriteMeasurement logs measurement data and associated attachments to a data log.
var meas = run.CreateAttachableMeasurement(); ... meas.WriteMeasurement();
Tip WriteMeasurement is called during the
Dispose() method whenever leaving the using
context of a AttachableMeasurement or
AttachableMeasurements instance to log measurement data and
associated attachments to the data log.
Note It is not necessary to
call WriteMeasurement when using a using
block.