public void Remove(ServerProcessWatchdog watchdog)
 {
     InnerList.Remove(watchdog);
 }
 public ServerProcess(ProcessConfigurationData configuration)
 {
     this.configuration = configuration;
     this.watchdog      = new ServerProcessWatchdog(this);
 }
 public void Add(ServerProcessWatchdog watchdog)
 {
     InnerList.Add(watchdog);
 }