namespace Renci.SshNet.Messages.Authentication { /// /// Represents "none" SSH_MSG_USERAUTH_REQUEST message. /// internal class RequestMessageNone : RequestMessage { /// /// Initializes a new instance of the class. /// /// Name of the service. /// Authentication username. public RequestMessageNone(ServiceName serviceName, string username) : base(serviceName, username, "none") { } } }