aswi2022bug-thugs-gitlab/ld_client/LDClient/detection/IProcessUtils.cs @ 31b6e8b7
1 |
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 |
}
|