C# Class DroidExplorer.Core.UI.CConsole.Api.ProcessEventArgs

The ProcessEventArgs are arguments for a console event.
Inheritance: System.EventArgs
Mostra file Open project: camalot/droidexplorer Class Usage Examples

Public Methods

Method Description
ProcessEventArgs ( ) : System

Initializes a new instance of the ProcessEventArgs class.

ProcessEventArgs ( int code ) : System

Initializes a new instance of the ProcessEventArgs class.

ProcessEventArgs ( string content ) : System

Initializes a new instance of the ProcessEventArgs class.

ProcessEventArgs ( string content, int code ) : System

Initializes a new instance of the ProcessEventArgs class.

Method Details

ProcessEventArgs() public method

Initializes a new instance of the ProcessEventArgs class.
public ProcessEventArgs ( ) : System
return System

ProcessEventArgs() public method

Initializes a new instance of the ProcessEventArgs class.
public ProcessEventArgs ( int code ) : System
code int The code.
return System

ProcessEventArgs() public method

Initializes a new instance of the ProcessEventArgs class.
public ProcessEventArgs ( string content ) : System
content string The content.
return System

ProcessEventArgs() public method

Initializes a new instance of the ProcessEventArgs class.
public ProcessEventArgs ( string content, int code ) : System
content string The content.
code int The code.
return System