Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

Task(Of TResult).ContinueWith Method

This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.

  NameDescription
Public method ContinueWith(Action(Of Task)) Creates a continuation that executes asynchronously when the target Task completes. (Inherited from Task.)
Public method ContinueWith(Action(Of Task(Of TResult))) Creates a continuation that executes asynchronously when the target Task(Of TResult) completes.
Public method ContinueWith(Of TResult)(Func(Of Task, TResult)) Creates a continuation that executes asynchronously when the target Task completes. (Inherited from Task.)
Public method ContinueWith(Of TNewResult)(Func(Of Task(Of TResult), TNewResult)) Creates a continuation that executes asynchronously when the target Task(Of TResult) completes.
Public method ContinueWith(Action(Of Task), CancellationToken) Creates a continuation that executes asynchronously when the target Task completes. (Inherited from Task.)
Public method ContinueWith(Action(Of Task), TaskContinuationOptions) Creates a continuation that executes according to the specified TaskContinuationOptions. (Inherited from Task.)
Public method ContinueWith(Action(Of Task), TaskScheduler) Creates a continuation that executes asynchronously when the target Task completes. (Inherited from Task.)
Public method ContinueWith(Action(Of Task(Of TResult)), CancellationToken) Creates a continuation that executes asynchronously when the target Task(Of TResult) completes.
Public method ContinueWith(Action(Of Task(Of TResult)), TaskContinuationOptions) Creates a continuation that executes according the condition specified in continuationOptions.
Public method ContinueWith(Action(Of Task(Of TResult)), TaskScheduler) Creates a continuation that executes asynchronously when the target Task(Of TResult) completes.
Public method ContinueWith(Of TResult)(Func(Of Task, TResult), CancellationToken) Creates a continuation that executes asynchronously when the target Task completes. (Inherited from Task.)
Public method ContinueWith(Of TResult)(Func(Of Task, TResult), TaskContinuationOptions) Creates a continuation that executes according to the condition specified in continuationOptions. (Inherited from Task.)
Public method ContinueWith(Of TResult)(Func(Of Task, TResult), TaskScheduler) Creates a continuation that executes asynchronously when the target Task completes. (Inherited from Task.)
Public method ContinueWith(Of TNewResult)(Func(Of Task(Of TResult), TNewResult), CancellationToken) Creates a continuation that executes asynchronously when the target Task(Of TResult) completes.
Public method ContinueWith(Of TNewResult)(Func(Of Task(Of TResult), TNewResult), TaskContinuationOptions) Creates a continuation that executes according the condition specified in continuationOptions.
Public method ContinueWith(Of TNewResult)(Func(Of Task(Of TResult), TNewResult), TaskScheduler) Creates a continuation that executes asynchronously when the target Task(Of TResult) completes.
Public method ContinueWith(Action(Of Task), CancellationToken, TaskContinuationOptions, TaskScheduler) Creates a continuation that executes according to the specified TaskContinuationOptions. (Inherited from Task.)
Public method ContinueWith(Action(Of Task(Of TResult)), CancellationToken, TaskContinuationOptions, TaskScheduler) Creates a continuation that executes according the condition specified in continuationOptions.
Public method ContinueWith(Of TResult)(Func(Of Task, TResult), CancellationToken, TaskContinuationOptions, TaskScheduler) Creates a continuation that executes according to the condition specified in continuationOptions. (Inherited from Task.)
Public method ContinueWith(Of TNewResult)(Func(Of Task(Of TResult), TNewResult), CancellationToken, TaskContinuationOptions, TaskScheduler) Creates a continuation that executes according the condition specified in continuationOptions.
Top

Community Additions

Show:
© 2017 Microsoft