System.Threading.Tasks.Task.ContinueWith Method

Creates a continuation that executes asynchronously when the target System.Threading.Tasks.Task completes.

Syntax

public Task ContinueWith (Action<Task> continuationAction, System.Threading.CancellationToken cancellationToken)

Parameters

continuationAction
An action to run when the System.Threading.Tasks.Task completes. When run, the delegate will be passed the completed task as an argument.
cancellationToken
The TaskFactory.CancellationToken that will be assigned to the new continuation task.

Returns

A new continuation System.Threading.Tasks.Task.

Remarks

The returned System.Threading.Tasks.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.

Requirements

Namespace: System.Threading.Tasks
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 4.0.0.0