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