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);
        }