Renci.SshNet.KeyboardInteractiveAuthenticationMethod.KeyboardInteractiveAuthenticationMethod C# (CSharp) Méthode

KeyboardInteractiveAuthenticationMethod() public méthode

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