System.Threading.Tasks.Task.ContinueWith Method

Creates a continuation that executes according to the specified System.Threading.Tasks.TaskContinuationOptions.

Syntax

public Task ContinueWith (Action<Task> continuationAction, System.Threading.CancellationToken cancellationToken, TaskContinuationOptions continuationOptions, TaskScheduler scheduler)

Parameters

continuationAction
An action to run according to the specified continuationOptions. 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.
continuationOptions
Options for when the continuation is scheduled and how it behaves. This includes criteria, such as TaskContinuationOptions.OnlyOnCanceled, as well as execution options, such as TaskContinuationOptions.ExecuteSynchronously.
scheduler
The System.Threading.Tasks.TaskScheduler to associate with the continuation task and to use for its execution.

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. If the criteria specified through the continuationOptions parameter are not met, the continuation task will be canceled instead of scheduled.

Requirements

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