BACnet.Ashrae.NotificationParameters.FloatingLimit.Load C# (CSharp) 메소드

Load() 공개 정적인 메소드

public static Load ( IValueStream stream ) : FloatingLimit
stream IValueStream
리턴 FloatingLimit
            public static new FloatingLimit Load(IValueStream stream)
            {
                stream.EnterSequence();
                var referenceValue = Value<float>.Load(stream);
                var statusFlags = Value<StatusFlags>.Load(stream);
                var setpointValue = Value<float>.Load(stream);
                var errorLimit = Value<float>.Load(stream);
                stream.LeaveSequence();
                return new FloatingLimit(referenceValue, statusFlags, setpointValue, errorLimit);
            }
NotificationParameters.FloatingLimit