ServiceBase.CanShutdown Property
.NET Framework 2.0
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)
Assembly: System.ServiceProcess (in system.serviceprocess.dll)
/** @property */ public boolean get_CanShutdown () /** @property */ public void set_CanShutdown (boolean value)
public function get CanShutdown () : boolean public function set CanShutdown (value : boolean)
Property Value
true if the service should be notified when the system is shutting down; otherwise, false.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. |
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Note