Property | Type | Description | |
---|---|---|---|
flag_disable_user_stdout | bool | ||
flag_stdout_word_mode | bool | ||
onComplete | Action |
||
onStdErr | Action |
||
onStdIOReady | Action | ||
onStdOut | Action |
||
onStdOutWord | Action |
||
threads | List |
Method | Description | |
---|---|---|
CliApp ( string exec ) : System |
Starts a CLI app in a new thread
|
|
exists ( string exePath ) : bool |
Check to see if an executable exists / can be run
|
|
kill ( ) : void | ||
quickStart ( string filename, string args = null, Action OnComplete = null ) : |
Quickly create a CLI APP and return it
|
|
quickStartSync ( string exePath, string args = null ) : string[] | ||
start ( string args = null, string workingDir = null ) : void |
Start a thread in a new thread, it will keep going
|
Method | Description | |
---|---|---|
captureWords ( ) : void |
Start capturing words from the stdout stream and push them on the callback
|
public CliApp ( string exec ) : System | ||
exec | string | Path to the executable |
return | System |
static public exists ( string exePath ) : bool | ||
exePath | string | |
return | bool |
static public quickStart ( string filename, string args = null, Action OnComplete = null ) : |
||
filename | string | |
args | string | |
OnComplete | Action | |
return |
static public quickStartSync ( string exePath, string args = null ) : string[] | ||
exePath | string | |
args | string | |
return | string[] |
public start ( string args = null, string workingDir = null ) : void | ||
args | string | Arguments |
workingDir | string | |
return | void |