ServiceBase.CanShutdown Property
Gets or sets a value indicating whether the service should be notified when the system is shutting down.
Namespace: System.ServiceProcess
Assembly: System.ServiceProcess (in System.ServiceProcess.dll)
Property Value
Type: System.Booleantrue if the service should be notified when the system is shutting down; otherwise, false. The default is false.
| Exception | Condition |
|---|---|
| InvalidOperationException | The service has already been started. The CanShutdown property cannot be changed once the service has started. |
If CanShutdown is true, the service is notified when the system is shutting down. At shutdown, the OnShutdown method is called if it has been implemented in your derived class.
Note |
|---|
Only the system should cause the OnShutdown method to execute; the service can call it, but this is not recommended. |
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note