BACnet.Ashrae.PriorityValue.ConstructedValueWrapper.Load C# (CSharp) Method

Load() public static method

public static Load ( IValueStream stream ) : ConstructedValueWrapper
stream IValueStream
return ConstructedValueWrapper
            public static new ConstructedValueWrapper Load(IValueStream stream)
            {
                var temp = Value<GenericValue>.Load(stream);
                return new ConstructedValueWrapper(temp);
            }
PriorityValue.ConstructedValueWrapper