BACnet.Ashrae.EventParameter.BufferReady.Load C# (CSharp) Method

Load() public static method

public static Load ( IValueStream stream ) : BufferReady
stream IValueStream
return BufferReady
            public static new BufferReady Load(IValueStream stream)
            {
                stream.EnterSequence();
                var notificationThreshold = Value<uint>.Load(stream);
                var previousNotificationCount = Value<uint>.Load(stream);
                stream.LeaveSequence();
                return new BufferReady(notificationThreshold, previousNotificationCount);
            }
EventParameter.BufferReady