tgstation-server 6.0.1
The /tg/station 13 server suite
Loading...
Searching...
No Matches
IProcessExecutor.cs
Go to the documentation of this file.
2{
7 {
19 string fileName,
20 string workingDirectory,
21 string arguments,
22 string? fileRedirect = null,
23 bool readStandardHandles = false,
24 bool noShellExecute = false);
25
31
38
45 }
46}
IProcess GetCurrentProcess()
Get a IProcess representing the running executable.
IProcess? GetProcess(int id)
Get a IProcess by id .
IProcess LaunchProcess(string fileName, string workingDirectory, string arguments, string? fileRedirect=null, bool readStandardHandles=false, bool noShellExecute=false)
Launch a IProcess.
IProcess? GetProcessByName(string name)
Get a IProcess with a given name .
Abstraction over a global::System.Diagnostics.Process.
Definition: IProcess.cs:11