ServiceController.WaitForStatus Method

Definition

Waits for the service to reach the specified status.

Overloads

WaitForStatus(ServiceControllerStatus)

Infinitely waits for the service to reach the specified status.

WaitForStatus(ServiceControllerStatus, TimeSpan)

Waits for the service to reach the specified status or for the specified time-out to expire.

WaitForStatus(ServiceControllerStatus)

Source:
ServiceController.cs
Source:
ServiceController.cs
Source:
ServiceController.cs

Infinitely waits for the service to reach the specified status.

public void WaitForStatus(System.ServiceProcess.ServiceControllerStatus desiredStatus);

Parameters

desiredStatus
ServiceControllerStatus

The status to wait for.

Exceptions

The desiredStatus parameter is not any of the values defined in the ServiceControllerStatus enumeration.

Examples

The following example uses the ServiceController class to check whether the Alerter service is stopped. If the service is stopped, the example starts the service and waits until the service status is set to Running.


// Check whether the Alerter service is started.

ServiceController sc  = new ServiceController();
sc.ServiceName = "Alerter";
Console.WriteLine("The Alerter service status is currently set to {0}",
                   sc.Status);

if (sc.Status == ServiceControllerStatus.Stopped)
{
   // Start the service if the current status is stopped.

   Console.WriteLine("Starting the Alerter service...");
   try
   {
      // Start the service, and wait until its status is "Running".
      sc.Start();
      sc.WaitForStatus(ServiceControllerStatus.Running);

      // Display the current service status.
      Console.WriteLine("The Alerter service status is now set to {0}.",
                         sc.Status);
   }
   catch (InvalidOperationException)
   {
      Console.WriteLine("Could not start the Alerter service.");
   }
}

Remarks

Use WaitForStatus to suspend an application's processing until the service has reached the required status.

Note

The WaitForStatus method waits approximately 250 milliseconds between each status check. WaitForStatus cannot detect the case of the observed service changing to the desiredStatus and then immediately to another status in that interval.

See also

Applies to

.NET 10 (package-provided) and other versions
Product Versions
.NET Core 1.0, Core 1.1, 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)

WaitForStatus(ServiceControllerStatus, TimeSpan)

Source:
ServiceController.cs
Source:
ServiceController.cs
Source:
ServiceController.cs

Waits for the service to reach the specified status or for the specified time-out to expire.

public void WaitForStatus(System.ServiceProcess.ServiceControllerStatus desiredStatus, TimeSpan timeout);

Parameters

desiredStatus
ServiceControllerStatus

The status to wait for.

timeout
TimeSpan

A TimeSpan object specifying the amount of time to wait for the service to reach the specified status.

Exceptions

The desiredStatus parameter is not any of the values defined in the ServiceControllerStatus enumeration.

The value specified for the timeout parameter expires.

Remarks

Use WaitForStatus to suspend an application's processing until the service has reached the required status.

Note

The WaitForStatus method waits approximately 250 milliseconds between each status check. WaitForStatus cannot detect the case of the observed service changing to the desiredStatus and then immediately to another status in that interval.

See also

Applies to

.NET 10 (package-provided) and other versions
Product Versions
.NET Core 1.0, Core 1.1, 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)