Method | Description | |
---|---|---|
AsyncRun ( PStdoutDelegate pstdout, PStderrDelegate pstderr, PCompleteDelegate pcomplete ) : void | ||
Exec ( string cmd, string args ) : System | ||
Run ( string cmd, string args ) : |
Main command execution function. Upon completion, prints all errors to the log window.
|
|
Terminate ( ) : void |
Terminate this job
|
Method | Description | |
---|---|---|
PErrorDataReceived ( object sender, |
Callback that handles process printing to stderr Collect all strings into one stderr variable and call a custom handler.
|
|
POutputDataReceived ( object sender, |
Callback that handles process printing to stdout. Collect all strings into one stdout variable and call a custom handler.
|
|
ThreadedRun ( object wait ) : void |
Executes a job process and blocks until it completes.
|
public AsyncRun ( PStdoutDelegate pstdout, PStderrDelegate pstderr, PCompleteDelegate pcomplete ) : void | ||
pstdout | PStdoutDelegate | |
pstderr | PStderrDelegate | |
pcomplete | PCompleteDelegate | |
return | void |
public Exec ( string cmd, string args ) : System | ||
cmd | string | |
args | string | |
return | System |
public static Run ( string cmd, string args ) : |
||
cmd | string | |
args | string | |
return |