'Declaration Public Event ListTasksCompleted As EventHandler(Of ListTasksCompletedEventArgs)
public event EventHandler<ListTasksCompletedEventArgs> ListTasksCompleted
Event Data
The event handler receives an argument of type ListTasksCompletedEventArgs containing data related to this event. The following ListTasksCompletedEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancelled | (Inherited from System.ComponentModel.AsyncCompletedEventArgs) |
Error | (Inherited from System.ComponentModel.AsyncCompletedEventArgs) |
Result | |
Tasks | |
UserState | (Inherited from System.ComponentModel.AsyncCompletedEventArgs) |
See Also