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

Load() public static method

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