BACnet.Ashrae.PropertyReference.Load C# (CSharp) Method

Load() public static method

public static Load ( IValueStream stream ) : PropertyReference
stream IValueStream
return PropertyReference
        public static PropertyReference Load(IValueStream stream)
        {
            stream.EnterSequence();
            var propertyIdentifier = Value<PropertyIdentifier>.Load(stream);
            var propertyArrayIndex = Value<Option<uint>>.Load(stream);
            stream.LeaveSequence();
            return new PropertyReference(propertyIdentifier, propertyArrayIndex);
        }