public COVSubscription(RecipientProcess recipient, ObjectPropertyReference monitoredPropertyReference, bool issueConfirmedNotifications, uint timeRemaining, Option<float> cOVIncrement) { this.Recipient = recipient; this.MonitoredPropertyReference = monitoredPropertyReference; this.IssueConfirmedNotifications = issueConfirmedNotifications; this.TimeRemaining = timeRemaining; this.COVIncrement = cOVIncrement; }
public static void Save(IValueSink sink, ObjectPropertyReference value) { sink.EnterSequence(); Value<ObjectId>.Save(sink, value.ObjectIdentifier); Value<PropertyIdentifier>.Save(sink, value.PropertyIdentifier); Value<Option<uint>>.Save(sink, value.PropertyArrayIndex); sink.LeaveSequence(); }
public COVSubscription(RecipientProcess recipient, ObjectPropertyReference monitoredPropertyReference, bool issueConfirmedNotifications, uint timeRemaining, Option <float> cOVIncrement) { this.Recipient = recipient; this.MonitoredPropertyReference = monitoredPropertyReference; this.IssueConfirmedNotifications = issueConfirmedNotifications; this.TimeRemaining = timeRemaining; this.COVIncrement = cOVIncrement; }
public static void Save(IValueSink sink, ObjectPropertyReference value) { sink.EnterSequence(); Value <ObjectId> .Save(sink, value.ObjectIdentifier); Value <PropertyIdentifier> .Save(sink, value.PropertyIdentifier); Value <Option <uint> > .Save(sink, value.PropertyArrayIndex); sink.LeaveSequence(); }
public WritePropertyMultipleError(Error errorType, ObjectPropertyReference firstFailedWriteAttempt) { this.ErrorType = errorType; this.FirstFailedWriteAttempt = firstFailedWriteAttempt; }