ServiceController.WaitForStatus Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Espera a que el servicio alcance el estado especificado.
Sobrecargas
WaitForStatus(ServiceControllerStatus) |
No actúa hasta que el servicio alcanza el estado especificado. |
WaitForStatus(ServiceControllerStatus, TimeSpan) |
Espera a que el servicio alcance el estado especificado o a que expire el tiempo de espera especificado. |
WaitForStatus(ServiceControllerStatus)
No actúa hasta que el servicio alcanza el estado especificado.
public:
void WaitForStatus(System::ServiceProcess::ServiceControllerStatus desiredStatus);
public void WaitForStatus (System.ServiceProcess.ServiceControllerStatus desiredStatus);
member this.WaitForStatus : System.ServiceProcess.ServiceControllerStatus -> unit
Public Sub WaitForStatus (desiredStatus As ServiceControllerStatus)
Parámetros
- desiredStatus
- ServiceControllerStatus
Estado al que se espera.
Excepciones
El parámetro desiredStatus
no es ninguno de los valores definidos en la enumeración ServiceControllerStatus.
Ejemplos
En el ejemplo siguiente se usa la ServiceController clase para comprobar si el servicio Alerter está detenido. Si el servicio se detiene, el ejemplo inicia el servicio y espera hasta que el estado del servicio se establezca en Running.
// Check whether the Alerter service is started.
ServiceController^ sc = gcnew ServiceController;
if ( sc )
{
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^ e )
{
Console::WriteLine( "Could not start the Alerter service." );
}
}
}
// 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.ToString());
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.ToString());
}
catch (InvalidOperationException)
{
Console.WriteLine("Could not start the Alerter service.");
}
}
' Check whether the Alerter service is started.
Dim sc As New ServiceController()
sc.ServiceName = "Alerter"
Console.WriteLine("The Alerter service status is currently set to {0}", sc.Status)
If sc.Status = ServiceControllerStatus.Stopped Then
' 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
Console.WriteLine("Could not start the Alerter service.")
End Try
End If
Comentarios
Use WaitForStatus para suspender el procesamiento de una aplicación hasta que el servicio haya alcanzado el estado necesario.
Nota
El WaitForStatus método espera aproximadamente 250 milisegundos entre cada comprobación de estado. WaitForStatus no puede detectar el caso del servicio observado cambiando a desiredStatus
y, a continuación, inmediatamente a otro estado en ese intervalo.
Consulte también
Se aplica a
WaitForStatus(ServiceControllerStatus, TimeSpan)
Espera a que el servicio alcance el estado especificado o a que expire el tiempo de espera especificado.
public:
void WaitForStatus(System::ServiceProcess::ServiceControllerStatus desiredStatus, TimeSpan timeout);
public void WaitForStatus (System.ServiceProcess.ServiceControllerStatus desiredStatus, TimeSpan timeout);
member this.WaitForStatus : System.ServiceProcess.ServiceControllerStatus * TimeSpan -> unit
Public Sub WaitForStatus (desiredStatus As ServiceControllerStatus, timeout As TimeSpan)
Parámetros
- desiredStatus
- ServiceControllerStatus
Estado al que se espera.
- timeout
- TimeSpan
Objeto TimeSpan que especifica el tiempo que se debe esperar a que el servicio alcance el estado especificado.
Excepciones
El parámetro desiredStatus
no es ninguno de los valores definidos en la enumeración ServiceControllerStatus.
El valor especificado para el parámetro timeout
expira.
Comentarios
Use WaitForStatus para suspender el procesamiento de una aplicación hasta que el servicio haya alcanzado el estado necesario.
Nota
El WaitForStatus método espera aproximadamente 250 milisegundos entre cada comprobación de estado. WaitForStatus no puede detectar el caso del servicio observado cambiando a desiredStatus
y, a continuación, inmediatamente a otro estado en ese intervalo.