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

ReadPropertyAck() public method

public ReadPropertyAck ( ObjectId objectIdentifier, PropertyIdentifier propertyIdentifier, Option propertyArrayIndex, GenericValue propertyValue ) : System
objectIdentifier ObjectId
propertyIdentifier PropertyIdentifier
propertyArrayIndex Option
propertyValue GenericValue
return System
        public ReadPropertyAck(ObjectId objectIdentifier, PropertyIdentifier propertyIdentifier, Option<uint> propertyArrayIndex, GenericValue propertyValue)
        {
            this.ObjectIdentifier = objectIdentifier;
            this.PropertyIdentifier = propertyIdentifier;
            this.PropertyArrayIndex = propertyArrayIndex;
            this.PropertyValue = propertyValue;
        }