using System.Collections.Generic; namespace Renci.SshNet.Common { /// /// Provides data for event. /// public class AuthenticationPromptEventArgs : AuthenticationEventArgs { /// /// Initializes a new instance of the class. /// /// The username. /// The instruction. /// The language. /// The information request prompts. public AuthenticationPromptEventArgs(string username, string instruction, string language, IEnumerable prompts) : base(username) { Instruction = instruction; Language = language; Prompts = prompts; } /// /// Gets prompt language. /// public string Language { get; } /// /// Gets prompt instruction. /// public string Instruction { get; } /// /// Gets server information request prompts. /// public IEnumerable Prompts { get; } } }