C# Class YAMP.UserInputEventArgs

Data used for giving user prompts.
Inheritance: System.EventArgs
Afficher le fichier Open project: FlorianRappl/YAMP Class Usage Examples

Méthodes publiques

Méthode Description
Continue ( string input ) : void

Continues with the given input.

UserInputEventArgs ( EventWaitHandle waitHandle, string message ) : System

Creates a new user input event argument.

Method Details

Continue() public méthode

Continues with the given input.
public Continue ( string input ) : void
input string The user's input.
Résultat void

UserInputEventArgs() public méthode

Creates a new user input event argument.
public UserInputEventArgs ( EventWaitHandle waitHandle, string message ) : System
waitHandle System.Threading.EventWaitHandle The wait handle where the waiting is based on.
message string The message to show.
Résultat System