aswi2022bug-thugs-gitlab/ld_client/LDClient/detection/IProcessUtils.cs @ f63d5489
1 | 0932a9e2 | Pultak | using System; |
---|---|---|---|
2 | using System.Collections.Generic; |
||
3 | using System.Linq; |
||
4 | using System.Text; |
||
5 | using System.Threading.Tasks; |
||
6 | |||
7 | namespace LDClient.detection { |
||
8 | public interface IProcessUtils { |
||
9 | public bool IsProcessRunning(string name); |
||
10 | |||
11 | public bool ExecuteNewProcess(string fileName, string argument, int timeout, int desiredExitCode); |
||
12 | }
|
||
13 | }
|