RunWorkerCompletedEventHandler Delegate
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Represents the method that will handle the RunWorkerCompleted event that is raised when the operation performed by a BackgroundWorker has completed, has been canceled, or has raised an exception.
Assembly: System (in System.dll)
'Declaration Public Delegate Sub RunWorkerCompletedEventHandler ( _ sender As Object, _ e As RunWorkerCompletedEventArgs _ )
Parameters
- sender
- Type: System.Object
The source of the event.
- e
- Type: System.ComponentModel.RunWorkerCompletedEventArgs
A RunWorkerCompletedEventArgs that contains the event data.
Show: