tgstation-server
The /tg/station 13 server suite
IProcessExecutor.cs
Go to the documentation of this file.
1 namespace Tgstation.Server.Host.Core
2 {
6  interface IProcessExecutor
7  {
18  IProcess LaunchProcess(string fileName, string workingDirectory, string arguments = null, bool readOutput = false, bool readError = false, bool noShellExecute = false);
19 
25  IProcess GetProcess(int id);
26  }
27 }
Abstraction over a System.Diagnostics.Process
Definition: IProcess.cs:9