BACnet.Ashrae.ReadAccessResult.PropertyValueWrapper.Load C# (CSharp) Method

Load() public static method

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