ContinueWith(TNewResult) Method (Func(Task(TResult), TNewResult), CancellationToken)
TOC
Collapse the table of content
Expand the table of content

Task(Of TResult).ContinueWith(Of TNewResult) Method (Func(Of Task(Of TResult), TNewResult), CancellationToken)

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Creates a continuation that executes asynchronously when the target Task(Of TResult) completes.

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

'Declaration
Public Function ContinueWith(Of TNewResult) ( _
	continuationFunction As Func(Of Task(Of TResult), TNewResult), _
	cancellationToken As CancellationToken _
) As Task(Of TNewResult)

Type Parameters

TNewResult

The type of the result produced by the continuation.

Parameters

continuationFunction
Type: System.Func(Of Task(Of TResult), TNewResult)
A function to run when the Task(Of TResult) completes. When run, the delegate will be passed the completed task as an argument.
cancellationToken
Type: System.Threading.CancellationToken
The CancellationToken that will be assigned to the new task.

Return Value

Type: System.Threading.Tasks.Task(Of TNewResult)
A new continuation Task(Of TResult).

ExceptionCondition
ObjectDisposedException

The Task(Of TResult) has been disposed.

-or-

The CancellationTokenSource that created cancellationToken has already been disposed.

ArgumentNullException

The continuationFunction argument is null.

The returned Task(Of TResult) 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.

Windows Phone OS

Supported in: 8.1, 8.0

Show:
© 2017 Microsoft