.NET Framework Class Library
ServiceBase.OnShutdown Method

When implemented in a derived class, executes when the system is shutting down. Specifies what should happen immediately prior to the system shutting down.

Namespace: System.ServiceProcess
Assembly: System.ServiceProcess (in system.serviceprocess.dll)

Syntax

Visual Basic (Declaration)
Protected Overridable Sub OnShutdown
Visual Basic (Usage)
Me.OnShutdown
C#
protected virtual void OnShutdown ()
C++
protected:
virtual void OnShutdown ()
J#
protected void OnShutdown ()
JScript
protected function OnShutdown ()
Remarks

Use OnShutdown to specify the processing that occurs when the system shuts down. Often, OnShutdown will be similar to the processing in OnStop. This event occurs only when the operating system is shut down, not when the computer is turned off.

OnShutdown is expected to be overridden when the CanShutdown property is true.

.NET Framework Security

  • Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see .
Platforms

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.

Version Information

.NET Framework

Supported in: 2.0, 1.1, 1.0
See Also

Tags :


Page view tracker