ServiceController::CanShutdown Property
.NET Framework (current version)
Gets a value indicating whether the service should be notified when the system is shutting down.
Assembly: System.ServiceProcess (in System.ServiceProcess.dll)
public: [ServiceProcessDescriptionAttribute("SPCanShutdown")] property bool CanShutdown { bool get(); }
Property Value
Type: System::Booleantrue if the service should be notified when the system is shutting down; otherwise, false.
| Exception | Condition |
|---|---|
| Win32Exception | An error occurred when accessing a system API. |
| InvalidOperationException | The service was not found. |
The following example demonstrates the use of the CanShutdown property to determine whether a service provides a handler for a shutdown event. This example is part of a larger example that is provided for the ServiceController class.
.NET Framework
Available since 1.1
Available since 1.1
Show: