Renci.SshNet.Messages.Connection.DirectTcpipChannelInfo.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();

            _hostToConnect = ReadBinary();
            PortToConnect = ReadUInt32();
            _originatorAddress = ReadBinary();
            OriginatorPort = ReadUInt32();
        }