UpdateControllerOnUpdateStarting 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 OnUpdateStarting(
UpdateStartingEventArgs e
)
Protected Overridable Sub OnUpdateStarting (
e As UpdateStartingEventArgs
)
protected:
virtual void OnUpdateStarting(
UpdateStartingEventArgs^ e
)
abstract OnUpdateStarting :
e : UpdateStartingEventArgs -> unit
override OnUpdateStarting :
e : UpdateStartingEventArgs -> unit
Parameters
- e
- Type: Kjs.AppLife.Update.ControllerUpdateStartingEventArgs
The UpdateStartingEventArgs instance containing the event data.
Remarks
Derived classes can override this method to handle the
UpdateStarting
event without attaching a delegate.
When overriding OnUpdateStarting(UpdateStartingEventArgs), be sure to call the base class's
OnUpdateStarting(UpdateStartingEventArgs) method so that the event is raised.
See Also