Poderosa.Protocols.SSHSocket.KeyboardInteractiveAuthenticationPrompt C# (CSharp) Method

KeyboardInteractiveAuthenticationPrompt() public method

public KeyboardInteractiveAuthenticationPrompt ( string prompts, bool echoes ) : string[]
prompts string
echoes bool
return string[]
        public string[] KeyboardInteractiveAuthenticationPrompt(string[] prompts, bool[] echoes)
        {
            if (_keyboardInteractiveAuthHanlder != null) {
                return _keyboardInteractiveAuthHanlder.KeyboardInteractiveAuthenticationPrompt(prompts, echoes);
            } else {
                return prompts.Select(s => "").ToArray();
            }
        }