AuthenticationPrompt
Provides prompt information when AuthenticationPrompt is raised
namespace Renci.SshNet.Common
{
public class AuthenticationPrompt
{
public int Id { get; set; }
public bool IsEchoed { get; set; }
public string Request { get; set; }
public string Response { get; set; }
public AuthenticationPrompt(int id, bool isEchoed, string request)
{
Id = id;
IsEchoed = isEchoed;
Request = request;
}
}
}