TaskFactory.ContinueWhenAll Method

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Include Protected Members
Include Inherited Members

Include Silverlight Members
Include Silverlight for Windows Phone Members
Include XNA Framework Members

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

Overload List

  Name Description
Public method ContinueWhenAll(array<Task[], Action<array<Task[]>) Creates a continuation Task that will be started upon the completion of a set of provided Tasks.
Public method ContinueWhenAll<TResult>(array<Task[], Func<array<Task[], TResult>) Creates a continuation Task that will be started upon the completion of a set of provided Tasks.
Public method ContinueWhenAll<TAntecedentResult>(array<Task<TAntecedentResult>[], Action<array<Task<TAntecedentResult>[]>) Creates a continuation Task that will be started upon the completion of a set of provided Tasks.
Public method ContinueWhenAll<TAntecedentResult, TResult>(array<Task<TAntecedentResult>[], Func<array<Task<TAntecedentResult>[], TResult>) Creates a continuation Task<TResult> that will be started upon the completion of a set of provided Tasks.
Public method ContinueWhenAll(array<Task[], Action<array<Task[]>, CancellationToken) Creates a continuation Task that will be started upon the completion of a set of provided Tasks.
Public method ContinueWhenAll(array<Task[], Action<array<Task[]>, TaskContinuationOptions) Creates a continuation Task that will be started upon the completion of a set of provided Tasks.
Public method ContinueWhenAll<TResult>(array<Task[], Func<array<Task[], TResult>, CancellationToken) Creates a continuation Task that will be started upon the completion of a set of provided Tasks.
Public method ContinueWhenAll<TResult>(array<Task[], Func<array<Task[], TResult>, TaskContinuationOptions) Creates a continuation Task<TResult> that will be started upon the completion of a set of provided Tasks.
Public method ContinueWhenAll<TAntecedentResult>(array<Task<TAntecedentResult>[], Action<array<Task<TAntecedentResult>[]>, CancellationToken) Creates a continuation Task that will be started upon the completion of a set of provided Tasks.
Public method ContinueWhenAll<TAntecedentResult>(array<Task<TAntecedentResult>[], Action<array<Task<TAntecedentResult>[]>, TaskContinuationOptions) Creates a continuation Task that will be started upon the completion of a set of provided Tasks.
Public method ContinueWhenAll<TAntecedentResult, TResult>(array<Task<TAntecedentResult>[], Func<array<Task<TAntecedentResult>[], TResult>, CancellationToken) Creates a continuation Task<TResult> that will be started upon the completion of a set of provided Tasks.
Public method ContinueWhenAll<TAntecedentResult, TResult>(array<Task<TAntecedentResult>[], Func<array<Task<TAntecedentResult>[], TResult>, TaskContinuationOptions) Creates a continuation Task<TResult> that will be started upon the completion of a set of provided Tasks.
Public method ContinueWhenAll(array<Task[], Action<array<Task[]>, CancellationToken, TaskContinuationOptions, TaskScheduler) Creates a continuation Task that will be started upon the completion of a set of provided Tasks.
Public method ContinueWhenAll<TResult>(array<Task[], Func<array<Task[], TResult>, CancellationToken, TaskContinuationOptions, TaskScheduler) Creates a continuation Task<TResult> that will be started upon the completion of a set of provided Tasks.
Public method ContinueWhenAll<TAntecedentResult>(array<Task<TAntecedentResult>[], Action<array<Task<TAntecedentResult>[]>, CancellationToken, TaskContinuationOptions, TaskScheduler) Creates a continuation Task that will be started upon the completion of a set of provided Tasks.
Public method ContinueWhenAll<TAntecedentResult, TResult>(array<Task<TAntecedentResult>[], Func<array<Task<TAntecedentResult>[], TResult>, CancellationToken, TaskContinuationOptions, TaskScheduler) Creates a continuation Task<TResult> that will be started upon the completion of a set of provided Tasks.

Top