BACnet.Ashrae.SubscribeCOVPropertyRequest.Save C# (CSharp) Method

Save() public static method

public static Save ( IValueSink sink, SubscribeCOVPropertyRequest value ) : void
sink IValueSink
value SubscribeCOVPropertyRequest
return void
        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();
        }