Exemple #1
0
 public int KillAll(string[] names)
 {
     try
     {
         return(_processes.KillAll(names));
     }
     catch (Exception e)
     {
         throw new RemoteNodeException(_machine, e);
     }
 }
Exemple #2
0
 private int KillProcessesPrivate(string[] processName)
 {
     return(_processes.KillAll(processName));
 }