C# Class Renci.SshNet.Messages.Authentication.RequestMessageHost

Represents "hostbased" SSH_MSG_USERAUTH_REQUEST message.
Inheritance: RequestMessage
Mostra file Open project: sshnet/SSH.NET

Public Methods

Method Description
RequestMessageHost ( ServiceName serviceName, string username, string publicKeyAlgorithm, byte publicHostKey, string clientHostName, string clientUsername, byte signature )

Initializes a new instance of the RequestMessageHost class.

Protected Methods

Method Description
SaveData ( ) : void

Called when type specific data need to be saved.

Method Details

RequestMessageHost() public method

Initializes a new instance of the RequestMessageHost class.
public RequestMessageHost ( ServiceName serviceName, string username, string publicKeyAlgorithm, byte publicHostKey, string clientHostName, string clientUsername, byte signature )
serviceName ServiceName Name of the service.
username string Authentication username.
publicKeyAlgorithm string The public key algorithm.
publicHostKey byte The public host key.
clientHostName string Name of the client host.
clientUsername string The client username.
signature byte The signature.

SaveData() protected method

Called when type specific data need to be saved.
protected SaveData ( ) : void
return void