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