C# Class YAMP.UserInputEventArgs

Data used for giving user prompts.
Inheritance: System.EventArgs
Datei anzeigen Open project: FlorianRappl/YAMP Class Usage Examples

Public Methods

Method 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 method

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

UserInputEventArgs() public method

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.
return System