BACnet.Ashrae.VTSession.Load C# (CSharp) Method

Load() public static method

public static Load ( IValueStream stream ) : VTSession
stream IValueStream
return VTSession
        public static VTSession Load(IValueStream stream)
        {
            stream.EnterSequence();
            var localVtSessionID = Value<byte>.Load(stream);
            var remoteVtSessionID = Value<byte>.Load(stream);
            var remoteVtAddress = Value<NetworkAddress>.Load(stream);
            stream.LeaveSequence();
            return new VTSession(localVtSessionID, remoteVtSessionID, remoteVtAddress);
        }