Task.ContinueWith Method (Action(Of Task, Object), Object)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Creates a continuation that executes when the target Task completes.
Assembly: mscorlib (in mscorlib.dll)
'Declaration Public Function ContinueWith ( _ continuationAction As Action(Of Task, Object), _ state As Object _ ) As Task
Parameters
- continuationAction
- Type: System.Action(Of Task, Object)
An action to run when the Task completes. When run, the delegate will be passed the completed task as and the caller-supplied state object as arguments.
- state
- Type: System.Object
An object representing data to be used by the continuation action.
| Exception | Condition |
|---|---|
| ArgumentNullException | The continuationAction argument is null. |
The returned Task will not be scheduled for execution until the current task has completed, whether it completes due to running to completion successfully, faulting due to an unhandled exception, or exiting out early due to being canceled.
Show: