ServiceController.Stop Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Přetížení
| Name | Description |
|---|---|
| Stop() |
Zastaví tuto službu a všechny služby, které jsou na této službě závislé. |
| Stop(Boolean) |
Zastaví službu a volitelně všechny služby, které jsou na této službě závislé. |
Stop()
- Zdroj:
- ServiceController.cs
- Zdroj:
- ServiceController.cs
- Zdroj:
- ServiceController.cs
- Zdroj:
- ServiceController.cs
Zastaví tuto službu a všechny služby, které jsou na této službě závislé.
public:
void Stop();
public void Stop();
member this.Stop : unit -> unit
Public Sub Stop ()
Výjimky
Při přístupu k systémovému rozhraní API došlo k chybě.
Služba nebyla nalezena.
Příklady
Následující příklad používá ServiceController třídu ke kontrole aktuálního stavu služby Telnet. Pokud je služba zastavená, spustí se v příkladu služba. Pokud je služba spuštěná, příklad službu zastaví.
// Toggle the Telnet service -
// If it is started (running, paused, etc), stop the service.
// If it is stopped, start the service.
ServiceController^ sc = gcnew ServiceController( "Telnet" );
if ( sc )
{
Console::WriteLine( "The Telnet service status is currently set to {0}", sc->Status );
if ( (sc->Status == (ServiceControllerStatus::Stopped) ) || (sc->Status == (ServiceControllerStatus::StopPending) ) )
{
// Start the service if the current status is stopped.
Console::WriteLine( "Starting the Telnet service..." );
sc->Start();
}
else
{
// Stop the service if its status is not set to "Stopped".
Console::WriteLine( "Stopping the Telnet service..." );
sc->Stop();
}
// Refresh and display the current service status.
sc->Refresh();
Console::WriteLine( "The Telnet service status is now set to {0}.", sc->Status );
// Toggle the Telnet service -
// If it is started (running, paused, etc), stop the service.
// If it is stopped, start the service.
ServiceController sc = new ServiceController("Telnet");
Console.WriteLine("The Telnet service status is currently set to {0}",
sc.Status);
if ((sc.Status == ServiceControllerStatus.Stopped) ||
(sc.Status == ServiceControllerStatus.StopPending))
{
// Start the service if the current status is stopped.
Console.WriteLine("Starting the Telnet service...");
sc.Start();
}
else
{
// Stop the service if its status is not set to "Stopped".
Console.WriteLine("Stopping the Telnet service...");
sc.Stop();
}
// Refresh and display the current service status.
sc.Refresh();
Console.WriteLine("The Telnet service status is now set to {0}.",
sc.Status);
' Toggle the Telnet service -
' If it is started (running, paused, etc), stop the service.
' If it is stopped, start the service.
Dim sc As New ServiceController("Telnet")
Console.WriteLine("The Telnet service status is currently set to {0}", sc.Status)
If sc.Status.Equals(ServiceControllerStatus.Stopped) Or sc.Status.Equals(ServiceControllerStatus.StopPending) Then
' Start the service if the current status is stopped.
Console.WriteLine("Starting the Telnet service...")
sc.Start()
Else
' Stop the service if its status is not set to "Stopped".
Console.WriteLine("Stopping the Telnet service...")
sc.Stop()
End If
' Refresh and display the current service status.
sc.Refresh()
Console.WriteLine("The Telnet service status is now set to {0}.", sc.Status)
Poznámky
Pokud některé služby závisí na této službě pro svou operaci, zastaví se před zastavením této služby. Vlastnost DependentServices obsahuje sadu služeb, které na této sadě závisí.
Pokud zastavíte službu, na které tato služba závisí, zavolejte metodu Stop této služby v rámci Stop metody nadřazené služby. Vlastnost ServicesDependedOn obsahuje služby, na které tato služba závisí.
Viz také
Platí pro
Stop(Boolean)
- Zdroj:
- ServiceController.cs
- Zdroj:
- ServiceController.cs
- Zdroj:
- ServiceController.cs
- Zdroj:
- ServiceController.cs
Zastaví službu a volitelně všechny služby, které jsou na této službě závislé.
public:
void Stop(bool stopDependentServices);
public void Stop(bool stopDependentServices);
member this.Stop : bool -> unit
Public Sub Stop (stopDependentServices As Boolean)
Parametry
- stopDependentServices
- Boolean
true zastavit všechny spuštěné závislé služby společně se službou; false a zastavit pouze službu.
Poznámky
Pokud některé jiné služby závisí na této službě, musíte je před voláním této metody předat truestopDependentServices nebo je ručně zastavit.