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

Load() public static method

public static Load ( IValueStream stream ) : ReadPropertyConditionalRequest
stream IValueStream
return ReadPropertyConditionalRequest
        public static ReadPropertyConditionalRequest Load(IValueStream stream)
        {
            stream.EnterSequence();
            var objectSelectionCriteria = Value<ObjectSelectionCriteriaType>.Load(stream);
            var listOfPropertyReferences = Value<Option<ReadOnlyArray<PropertyReference>>>.Load(stream);
            stream.LeaveSequence();
            return new ReadPropertyConditionalRequest(objectSelectionCriteria, listOfPropertyReferences);
        }