Table of Contents

Class AuthenticationPrompt

Namespace
Renci.SshNet.Common
Assembly
Renci.SshNet.dll

Provides prompt information when Renci.SshNet.KeyboardInteractiveConnectionInfo.AuthenticationPrompt is raised.

public class AuthenticationPrompt

Inheritance

Inherited Members

Constructors

AuthenticationPrompt(int, bool, string)

Initializes a new instance of the Renci.SshNet.Common.AuthenticationPrompt class.

public AuthenticationPrompt(int id, bool isEchoed, string request)

Parameters

id int

The sequence id.

isEchoed bool

if set to true the user input should be echoed.

request string

The request.

Properties

Id

Gets the prompt sequence id.

public int Id { get; }

Property Value

int

IsEchoed

Gets a value indicating whether the user input should be echoed as characters are typed.

public bool IsEchoed { get; }

Property Value

bool

Request

Gets server information request.

public string Request { get; }

Property Value

string

Response

Gets or sets server information response.

public string Response { get; set; }

Property Value

string