public static void Save(IValueSink sink, SubscribeCOVPropertyRequest value) { sink.EnterSequence(); Value<uint>.Save(sink, value.SubscriberProcessIdentifier); Value<ObjectId>.Save(sink, value.MonitoredObjectIdentifier); Value<Option<bool>>.Save(sink, value.IssueConfirmedNotifications); Value<Option<uint>>.Save(sink, value.Lifetime); Value<PropertyReference>.Save(sink, value.MonitoredPropertyIdentifier); Value<Option<float>>.Save(sink, value.CovIncrement); sink.LeaveSequence(); }
public static void Save(IValueSink sink, SubscribeCOVPropertyRequest value) { sink.EnterSequence(); Value <uint> .Save(sink, value.SubscriberProcessIdentifier); Value <ObjectId> .Save(sink, value.MonitoredObjectIdentifier); Value <Option <bool> > .Save(sink, value.IssueConfirmedNotifications); Value <Option <uint> > .Save(sink, value.Lifetime); Value <PropertyReference> .Save(sink, value.MonitoredPropertyIdentifier); Value <Option <float> > .Save(sink, value.CovIncrement); sink.LeaveSequence(); }
public static ConfirmedServiceRequest NewSubscribeCOVProperty(SubscribeCOVPropertyRequest subscribeCOVProperty) { return new SubscribeCOVPropertyWrapper(subscribeCOVProperty); }
public SubscribeCOVPropertyWrapper(SubscribeCOVPropertyRequest item) { this.Item = item; }