コード例 #1
0
 public ListOfEventSummariesType(ObjectId objectIdentifier, EventState eventState, EventTransitionBits acknowledgedTransitions, ReadOnlyArray<TimeStamp> eventTimeStamps, NotifyType notifyType, EventTransitionBits eventEnable, ReadOnlyArray<uint> eventPriorities)
 {
     this.ObjectIdentifier = objectIdentifier;
     this.EventState = eventState;
     this.AcknowledgedTransitions = acknowledgedTransitions;
     this.EventTimeStamps = eventTimeStamps;
     this.NotifyType = notifyType;
     this.EventEnable = eventEnable;
     this.EventPriorities = eventPriorities;
 }
コード例 #2
0
ファイル: Destination.cs プロジェクト: LorenVS/bacstack
 public Destination(DaysOfWeek validDays, Time fromTime, Time toTime, Recipient recipient, uint processIdentifier, bool issueConfirmedNotifications, EventTransitionBits transitions)
 {
     this.ValidDays = validDays;
     this.FromTime = fromTime;
     this.ToTime = toTime;
     this.Recipient = recipient;
     this.ProcessIdentifier = processIdentifier;
     this.IssueConfirmedNotifications = issueConfirmedNotifications;
     this.Transitions = transitions;
 }
コード例 #3
0
 public Destination(DaysOfWeek validDays, Time fromTime, Time toTime, Recipient recipient, uint processIdentifier, bool issueConfirmedNotifications, EventTransitionBits transitions)
 {
     this.ValidDays                   = validDays;
     this.FromTime                    = fromTime;
     this.ToTime                      = toTime;
     this.Recipient                   = recipient;
     this.ProcessIdentifier           = processIdentifier;
     this.IssueConfirmedNotifications = issueConfirmedNotifications;
     this.Transitions                 = transitions;
 }
コード例 #4
0
 public Element(ObjectId objectIdentifier, EventState alarmState, EventTransitionBits acknowledgedTransitions)
 {
     this.ObjectIdentifier        = objectIdentifier;
     this.AlarmState              = alarmState;
     this.AcknowledgedTransitions = acknowledgedTransitions;
 }
コード例 #5
0
 public static void Save(IValueSink sink, EventTransitionBits value)
 {
     Value <BitString56> .Save(sink, value._bitstring);
 }
コード例 #6
0
 public ListOfEventSummariesType(ObjectId objectIdentifier, EventState eventState, EventTransitionBits acknowledgedTransitions, ReadOnlyArray <TimeStamp> eventTimeStamps, NotifyType notifyType, EventTransitionBits eventEnable, ReadOnlyArray <uint> eventPriorities)
 {
     this.ObjectIdentifier        = objectIdentifier;
     this.EventState              = eventState;
     this.AcknowledgedTransitions = acknowledgedTransitions;
     this.EventTimeStamps         = eventTimeStamps;
     this.NotifyType              = notifyType;
     this.EventEnable             = eventEnable;
     this.EventPriorities         = eventPriorities;
 }
コード例 #7
0
 public static void Save(IValueSink sink, EventTransitionBits value)
 {
     Value<BitString56>.Save(sink, value._bitstring);
 }
コード例 #8
0
 public Element(ObjectId objectIdentifier, EventState alarmState, EventTransitionBits acknowledgedTransitions)
 {
     this.ObjectIdentifier = objectIdentifier;
     this.AlarmState = alarmState;
     this.AcknowledgedTransitions = acknowledgedTransitions;
 }