BackgroundWorker.OnRunWorkerCompleted Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Raises the RunWorkerCompleted event.
Assembly: System (in System.dll)
'Declaration Protected Overridable Sub OnRunWorkerCompleted ( _ e As RunWorkerCompletedEventArgs _ )
Parameters
- e
- Type: System.ComponentModel.RunWorkerCompletedEventArgs
A RunWorkerCompletedEventArgs that contains the event data.
Raising an event invokes the event handler through a delegate. For more information, see Events for Windows Phone 8.
The OnRunWorkerCompleted method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
Notes to InheritorsWhen overriding OnRunWorkerCompleted in a derived class, be sure to call the base class’s OnRunWorkerCompleted method so that registered delegates receive the event.