ServiceController.Stop() : ServiceController « System.ServiceProcess « C# / C Sharp by API






ServiceController.Stop()

   
using System;
using System.ServiceProcess;

class MainClass
{
  public static void Main() 
  {
    ServiceController scAlerter = new ServiceController("Alerter");

    Console.WriteLine(scAlerter.DisplayName);
    Console.WriteLine(scAlerter.CanStop);

    scAlerter.Stop();
    Console.WriteLine("Service stopped");
    scAlerter.Start();
    Console.WriteLine("Service started");
  }
}

   
    
    
  








Related examples in the same category

1.new ServiceController
2.ServiceController.CanStop
3.ServiceController.DisplayName