C# Class Deeply.ExecuteProcessTask

ExecuteProcessTask class definition.
Inheritance: TaskBase
Show file Open project: jsnape/deeply

Public Methods

Method Description
ExecuteProcessTask ( ProcessStartInfo startInfo ) : System

Initializes a new instance of the ExecuteProcessTask class.

ExecuteProcessTask ( string name, ProcessStartInfo startInfo ) : System

Initializes a new instance of the ExecuteProcessTask class.

Protected Methods

Method Description
ExecuteInternalAsync ( ITaskContext context ) : System.Threading.Tasks.Task

Implementation function for the execution.

This function is not asynchronous.

VerifyInternalAsync ( ITaskContext context ) : System.Threading.Tasks.Task

Implementation function for the verification.

Method Details

ExecuteInternalAsync() protected method

Implementation function for the execution.
This function is not asynchronous.
protected ExecuteInternalAsync ( ITaskContext context ) : System.Threading.Tasks.Task
context ITaskContext Verification context.
return System.Threading.Tasks.Task

ExecuteProcessTask() public method

Initializes a new instance of the ExecuteProcessTask class.
public ExecuteProcessTask ( ProcessStartInfo startInfo ) : System
startInfo System.Diagnostics.ProcessStartInfo Information used to start the process including command-line parameters.
return System

ExecuteProcessTask() public method

Initializes a new instance of the ExecuteProcessTask class.
public ExecuteProcessTask ( string name, ProcessStartInfo startInfo ) : System
name string Task name.
startInfo System.Diagnostics.ProcessStartInfo Information used to start the process including command-line parameters.
return System

VerifyInternalAsync() protected method

Implementation function for the verification.
protected VerifyInternalAsync ( ITaskContext context ) : System.Threading.Tasks.Task
context ITaskContext Verification context.
return System.Threading.Tasks.Task