AuthenticationPromptEventArgs
Provides data for  AuthenticationPrompt event.
            
                using System.Collections.Generic;
namespace Renci.SshNet.Common
{
    public class AuthenticationPromptEventArgs : AuthenticationEventArgs
    {
        public string Language { get; }
        public string Instruction { get; }
        public IReadOnlyList<AuthenticationPrompt> Prompts { get; }
        public AuthenticationPromptEventArgs(string username, string instruction, string language, IReadOnlyList<AuthenticationPrompt> prompts)
            : base(username)
        {
            Instruction = instruction;
            Language = language;
            Prompts = prompts;
        }
    }
}