Ejemplo n.º 1
0
 private void StartServices()
 {
     try
     {
         if (AppConfig.ServicesArray.Length > 0)
         {
             AppConfig.ServicesArray.ToList().ForEach(item =>
             {
                 _winServiceManager.StartService(item, AppConfig.TimeOut);
             });
         }
     }
     catch (Exception ex)
     {
         throw new Exception($"Er is iets misgegaan bij het opnieuw starten van de services." +
                             $"{Environment.NewLine} [error: {ex.Message}]");
     }
 }
Ejemplo n.º 2
0
 public void StartService(string serviceName, int timeoutMilliseconds)
 {
     _winServiceManager.StartService(serviceName, timeoutMilliseconds);
 }