BACnet.Ashrae.PropertyStates.SystemStatusWrapper.Load C# (CSharp) Method

Load() public static method

public static Load ( IValueStream stream ) : SystemStatusWrapper
stream IValueStream
return SystemStatusWrapper
            public static new SystemStatusWrapper Load(IValueStream stream)
            {
                var temp = Value<DeviceStatus>.Load(stream);
                return new SystemStatusWrapper(temp);
            }
PropertyStates.SystemStatusWrapper