Renci.SshNet.Security.KeyExchangeDiffieHellmanGroupExchangeSha1._ExchangeHashData.SaveData C# (CSharp) Method

SaveData() protected method

protected SaveData ( ) : void
return void
            protected override void SaveData()
            {
                this.Write(this.ClientVersion);
                this.Write(this.ServerVersion);
                this.WriteBinaryString(this.ClientPayload);
                this.WriteBinaryString(this.ServerPayload);
                this.WriteBinaryString(this.HostKey);
                this.Write(this.MinimumGroupSize);
                this.Write(this.PreferredGroupSize);
                this.Write(this.MaximumGroupSize);
                this.Write(this.Prime);
                this.Write(this.SubGroup);
                this.Write(this.ClientExchangeValue);
                this.Write(this.ServerExchangeValue);
                this.Write(this.SharedKey);
            }
        }
KeyExchangeDiffieHellmanGroupExchangeSha1._ExchangeHashData