Renci.SshNet.KeyboardInteractiveConnectionInfo.AuthenticationMethod_AuthenticationPrompt C# (CSharp) Method

AuthenticationMethod_AuthenticationPrompt() private method

private AuthenticationMethod_AuthenticationPrompt ( object sender, AuthenticationPromptEventArgs e ) : void
sender object
e Renci.SshNet.Common.AuthenticationPromptEventArgs
return void
        private void AuthenticationMethod_AuthenticationPrompt(object sender, AuthenticationPromptEventArgs e)
        {
            if (AuthenticationPrompt != null)
            {
                AuthenticationPrompt(sender, e);
            }
        }