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

Load() public static method

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