ServiceBase::CanShutdown Property
Gets or sets a value indicating whether the service should be notified when the system is shutting down.
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.
| 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 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note