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

Load() public static method

public static Load ( IValueStream stream ) : ReadAccessSpecification
stream IValueStream
return ReadAccessSpecification
        public static ReadAccessSpecification Load(IValueStream stream)
        {
            stream.EnterSequence();
            var objectIdentifier = Value<ObjectId>.Load(stream);
            var listOfPropertyReferences = Value<ReadOnlyArray<PropertyReference>>.Load(stream);
            stream.LeaveSequence();
            return new ReadAccessSpecification(objectIdentifier, listOfPropertyReferences);
        }