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