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