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

SubscribeCOVPropertyRequest() public method

public SubscribeCOVPropertyRequest ( uint subscriberProcessIdentifier, ObjectId monitoredObjectIdentifier, Option issueConfirmedNotifications, Option lifetime, PropertyReference monitoredPropertyIdentifier, Option covIncrement ) : System
subscriberProcessIdentifier uint
monitoredObjectIdentifier ObjectId
issueConfirmedNotifications Option
lifetime Option
monitoredPropertyIdentifier PropertyReference
covIncrement Option
return System
        public SubscribeCOVPropertyRequest(uint subscriberProcessIdentifier, ObjectId monitoredObjectIdentifier, Option<bool> issueConfirmedNotifications, Option<uint> lifetime, PropertyReference monitoredPropertyIdentifier, Option<float> covIncrement)
        {
            this.SubscriberProcessIdentifier = subscriberProcessIdentifier;
            this.MonitoredObjectIdentifier = monitoredObjectIdentifier;
            this.IssueConfirmedNotifications = issueConfirmedNotifications;
            this.Lifetime = lifetime;
            this.MonitoredPropertyIdentifier = monitoredPropertyIdentifier;
            this.CovIncrement = covIncrement;
        }