Class AuthenticationPromptEventArgs
Provides data for AuthenticationPrompt event.
public class AuthenticationPromptEventArgs : AuthenticationEventArgs
- Inheritance
-
AuthenticationPromptEventArgs
- Inherited Members
Constructors
AuthenticationPromptEventArgs(string, string, string, IReadOnlyList<AuthenticationPrompt>)
Initializes a new instance of the AuthenticationPromptEventArgs class.
public AuthenticationPromptEventArgs(string username, string instruction, string language, IReadOnlyList<AuthenticationPrompt> prompts)
Parameters
username
stringThe username.
instruction
stringThe instruction.
language
stringThe language.
prompts
IReadOnlyList<AuthenticationPrompt>The information request prompts.
Properties
Instruction
Gets prompt instruction.
public string Instruction { get; }
Property Value
Language
Gets prompt language.
public string Language { get; }
Property Value
Prompts
Gets server information request prompts.
public IReadOnlyList<AuthenticationPrompt> Prompts { get; }