Renci.SshNet.Common.AuthenticationPromptEventArgs.AuthenticationPromptEventArgs C# (CSharp) Method

AuthenticationPromptEventArgs() public method

Initializes a new instance of the AuthenticationPromptEventArgs class.
public AuthenticationPromptEventArgs ( string username, string instruction, string language, IEnumerable prompts ) : System.Collections.Generic
username string The username.
instruction string The instruction.
language string The language.
prompts IEnumerable The information request prompts.
return System.Collections.Generic
        public AuthenticationPromptEventArgs(string username, string instruction, string language, IEnumerable<AuthenticationPrompt> prompts)
            : base(username)
        {
            Instruction = instruction;
            Language = language;
            Prompts = prompts;
        }
    }
AuthenticationPromptEventArgs