Renci.SshNet.Messages.Connection.ForwardedTcpipChannelInfo.LoadData C# (CSharp) Method

LoadData() protected method

Called when type specific data need to be loaded.
protected LoadData ( ) : void
return void
        protected override void LoadData()
        {
            base.LoadData();

            _connectedAddress = ReadBinary();
            ConnectedPort = ReadUInt32();
            _originatorAddress = ReadBinary();
            OriginatorPort = ReadUInt32();
        }