ServiceController.CanPauseAndContinue Vlastnost

Definice

Získá hodnotu označující, zda lze službu pozastavit a obnovit.

public:
 property bool CanPauseAndContinue { bool get(); };
public bool CanPauseAndContinue { get; }
[System.ServiceProcess.ServiceProcessDescription("SPCanPauseAndContinue")]
public bool CanPauseAndContinue { get; }
member this.CanPauseAndContinue : bool
[<System.ServiceProcess.ServiceProcessDescription("SPCanPauseAndContinue")>]
member this.CanPauseAndContinue : bool
Public ReadOnly Property CanPauseAndContinue As Boolean

Hodnota vlastnosti

truepokud je možné službu pozastavit; v opačném případě . false

Atributy

Výjimky

Při přístupu k rozhraní API systému došlo k chybě.

Služba nebyla nalezena.

Příklady

Následující příklad ukazuje použití CanPauseAndContinue vlastnosti k určení, zda služba může pozastavit a pokračovat. Tento příklad je součástí většího příkladu ServiceController , který je k dispozici pro třídu.

// Display properties for the Simple Service sample
// from the ServiceBase example.
ServiceController sc = new ServiceController("Simple Service");
Console.WriteLine("Status = " + sc.Status);
Console.WriteLine("Can Pause and Continue = " + sc.CanPauseAndContinue);
Console.WriteLine("Can ShutDown = " + sc.CanShutdown);
Console.WriteLine("Can Stop = " + sc.CanStop);
' Display properties for the Simple Service sample 
' from the ServiceBase example
Dim sc As New ServiceController("Simple Service")
Console.WriteLine("Status = " + sc.Status.ToString())
Console.WriteLine("Can Pause and Continue = " + _
    sc.CanPauseAndContinue.ToString())
Console.WriteLine("Can ShutDown = " + sc.CanShutdown.ToString())
Console.WriteLine("Can Stop = " + sc.CanStop.ToString())

Platí pro