Class DefectAlarm
A defect alarm.
[DataContract(Namespace = "http://schemas.datacontract.org/2004/07/Acuit.Pinpoint.Server.Business")]
public class DefectAlarm
- Inheritance
-
DefectAlarm
- Inherited Members
Constructors
DefectAlarm(Defect, DateTime, double, double)
Initializes a new instance of the DefectAlarm class.
public DefectAlarm(Defect defect, DateTime timeOccurred, double rate, double alarmDefectRate)
Parameters
defectDefectThe defect.
timeOccurredDateTimeThe date/time when the alarm occurred, in UTC.
ratedoubleThe defect rate.
alarmDefectRatedoubleThe defect alarm rate setpoint.
Exceptions
- ArgumentNullException
defectis null.
Properties
AlarmDefectRate
Gets the defect alarm rate setpoint.
[DataMember]
public double AlarmDefectRate { get; }
Property Value
Defect
Gets the defect.
[DataMember]
public Defect Defect { get; }
Property Value
Rate
Gets the defect rate.
[DataMember]
public double Rate { get; }
Property Value
TimeOccurred
Gets the date/time when the alarm occurred, in UTC.
[DataMember]
public DateTime TimeOccurred { get; }