BACnet.Ashrae.NotificationParameters.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 bufferProperty = Value<DeviceObjectPropertyReference>.Load(stream);
                var previousNotification = Value<uint>.Load(stream);
                var currentNotification = Value<uint>.Load(stream);
                stream.LeaveSequence();
                return new BufferReady(bufferProperty, previousNotification, currentNotification);
            }
NotificationParameters.BufferReady