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

ObjectPropertyValue() public method

public ObjectPropertyValue ( ObjectId objectIdentifier, PropertyIdentifier propertyIdentifier, Option propertyArrayIndex, GenericValue value, Option priority ) : System
objectIdentifier ObjectId
propertyIdentifier PropertyIdentifier
propertyArrayIndex Option
value GenericValue
priority Option
return System
        public ObjectPropertyValue(ObjectId objectIdentifier, PropertyIdentifier propertyIdentifier, Option<uint> propertyArrayIndex, GenericValue value, Option<uint> priority)
        {
            this.ObjectIdentifier = objectIdentifier;
            this.PropertyIdentifier = propertyIdentifier;
            this.PropertyArrayIndex = propertyArrayIndex;
            this.Value = value;
            this.Priority = priority;
        }