AsyncCompletedEventArgs Constructor (Exception, Boolean, Object)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Initializes a new instance of the AsyncCompletedEventArgs class.
Assembly: System (in System.dll)
'Declaration Public Sub New ( _ error As Exception, _ cancelled As Boolean, _ userState As Object _ )
Parameters
- error
- Type: System.Exception
Any error that occurred during the asynchronous operation.
- cancelled
- Type: System.Boolean
A value that indicates whether the asynchronous operation was canceled.
- userState
- Type: System.Object
The optional user-supplied state object that is used to identify the task that raised the Completed event.
Show: