Method | Description | |
---|---|---|
GetFirstProcessByName ( string name ) : |
||
KillProcess ( int pid ) : bool | ||
KillProcess ( string name ) : bool | ||
ProcessExists ( int pid ) : bool | ||
ProcessExists ( string name ) : bool | ||
StartProcess ( |
||
StartProcess ( string exeLoc, string workingDir, string arguments = "" ) : |
Start a process
|
public static GetFirstProcessByName ( string name ) : |
||
name | string | |
return |
public static KillProcess ( string name ) : bool | ||
name | string | |
return | bool |
public static ProcessExists ( int pid ) : bool | ||
pid | int | |
return | bool |
public static ProcessExists ( string name ) : bool | ||
name | string | |
return | bool |
public static StartProcess ( |
||
psi | ||
return |
public static StartProcess ( string exeLoc, string workingDir, string arguments = "" ) : |
||
exeLoc | string | The location of the exe file |
workingDir | string | The directory in which to start the exe from |
arguments | string | Optional arguments to pass |
return |