Renci.SshNet.Security.KeyHostAlgorithm.SshKeyData.SaveData C# (CSharp) Method

SaveData() protected method

protected SaveData ( ) : void
return void
            protected override void SaveData()
            {
                WriteBinaryString(_name);

                foreach (var key in _keys)
                {
                    WriteBinaryString(key);
                }
            }
        }
KeyHostAlgorithm.SshKeyData