Automatak.Simulator.DNP3.Commons.MeasurementPoco.MeasurementPoco C# (CSharp) Method

MeasurementPoco() public method

public MeasurementPoco ( int row, string sValue, MeasurementBase meas, UInt16 index, MeasType type ) : System
row int
sValue string
meas MeasurementBase
index System.UInt16
type MeasType
return System
        public MeasurementPoco(int row, string sValue, MeasurementBase meas, UInt16 index, MeasType type)
        {
            this.sValue = sValue;
            this.index = index;
            this.flags = meas.Quality.ToString("X2");
            this.timeStamp = meas.Timestamp;
            this.row = row;
            this.type = type;
        }