UpdateControllerOnShutdownRequested Method |
Namespace: Kjs.AppLife.Update.ControllerAssembly: Kjs.AppLife.Update.Controller (in Kjs.AppLife.Update.Controller.dll) Version: 5.1.0.9 (5.1.0.9)
Syntaxprotected virtual void OnShutdownRequested(
CancelEventArgs e
)
Protected Overridable Sub OnShutdownRequested (
e As CancelEventArgs
)
protected:
virtual void OnShutdownRequested(
CancelEventArgs^ e
)
abstract OnShutdownRequested :
e : CancelEventArgs -> unit
override OnShutdownRequested :
e : CancelEventArgs -> unit
Parameters
- e
- Type: System.ComponentModelCancelEventArgs
The CancelEventArgs instance containing the event data.
Remarks
Derived classes can override this method to handle the
ShutdownRequested
event without attaching a delegate.
When overriding OnShutdownRequested(CancelEventArgs), be sure to call the base class's
OnShutdownRequested(CancelEventArgs) method so that the event is raised.
See Also