Renci.SshNet.KeyboardInteractiveAuthenticationMethod.KeyboardInteractiveAuthenticationMethod C# (CSharp) Метод

KeyboardInteractiveAuthenticationMethod() публичный Метод

Initializes a new instance of the KeyboardInteractiveAuthenticationMethod class.
is whitespace or null.
public KeyboardInteractiveAuthenticationMethod ( string username ) : System
username string The username.
Результат System
        public KeyboardInteractiveAuthenticationMethod(string username)
            : base(username)
        {
            _requestMessage = new RequestMessageKeyboardInteractive(ServiceName.Connection, username);
        }