Renci.SshNet.KeyboardInteractiveAuthenticationMethod.KeyboardInteractiveAuthenticationMethod C# (CSharp) Method

KeyboardInteractiveAuthenticationMethod() public method

Initializes a new instance of the KeyboardInteractiveAuthenticationMethod class.
is whitespace or null.
public KeyboardInteractiveAuthenticationMethod ( string username ) : System
username string The username.
return System
        public KeyboardInteractiveAuthenticationMethod(string username)
            : base(username)
        {
            _requestMessage = new RequestMessageKeyboardInteractive(ServiceName.Connection, username);
        }