BACnet.Ashrae.PropertyValue.PropertyValue C# (CSharp) Méthode

PropertyValue() public méthode

public PropertyValue ( PropertyIdentifier propertyIdentifier, Option propertyArrayIndex, GenericValue value, Option priority ) : System
propertyIdentifier PropertyIdentifier
propertyArrayIndex Option
value GenericValue
priority Option
Résultat 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;
        }