BACnet.Ashrae.ReadPropertyConditionalRequest.ListOfSelectionCriteriaType.Load C# (CSharp) 메소드

Load() 공개 정적인 메소드

public static Load ( IValueStream stream ) : ListOfSelectionCriteriaType
stream IValueStream
리턴 ListOfSelectionCriteriaType
            public static ListOfSelectionCriteriaType Load(IValueStream stream)
            {
                stream.EnterSequence();
                var propertyIdentifier = Value<PropertyIdentifier>.Load(stream);
                var propertyArrayIndex = Value<Option<uint>>.Load(stream);
                var relationSpecifier = Value<RelationSpecifierType>.Load(stream);
                var comparisonValue = Value<GenericValue>.Load(stream);
                stream.LeaveSequence();
                return new ListOfSelectionCriteriaType(propertyIdentifier, propertyArrayIndex, relationSpecifier, comparisonValue);
            }
ReadPropertyConditionalRequest.ListOfSelectionCriteriaType