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

Load() public static method

public static Load ( IValueStream stream ) : SubscribeCOVPropertyRequest
stream IValueStream
return SubscribeCOVPropertyRequest
        public static SubscribeCOVPropertyRequest Load(IValueStream stream)
        {
            stream.EnterSequence();
            var subscriberProcessIdentifier = Value<uint>.Load(stream);
            var monitoredObjectIdentifier = Value<ObjectId>.Load(stream);
            var issueConfirmedNotifications = Value<Option<bool>>.Load(stream);
            var lifetime = Value<Option<uint>>.Load(stream);
            var monitoredPropertyIdentifier = Value<PropertyReference>.Load(stream);
            var covIncrement = Value<Option<float>>.Load(stream);
            stream.LeaveSequence();
            return new SubscribeCOVPropertyRequest(subscriberProcessIdentifier, monitoredObjectIdentifier, issueConfirmedNotifications, lifetime, monitoredPropertyIdentifier, covIncrement);
        }