Renci.SshNet.Messages.Authentication.InformationRequestMessage
Represents SSH_MSG_USERAUTH_INFO_REQUEST message.
namespace Renci.SshNet.Messages.Authentication
{
internal class InformationRequestMessage : Message
{
public string Name { get; }
public string Instruction { get; }
public string Language { get; }
public IEnumerable<AuthenticationPrompt> Prompts { get; }
public InformationRequestMessage();
}
}