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

PropertyValue() public method

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