Projekt

Obecné

Profil

Stáhnout (355 Bajtů) Statistiky
| Větev: | Tag: | Revize:
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
}
(4-4/7)