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.
This documentation is archived and is not being maintained.
TaskFactory<TResult> :: ContinueWhenAll Method
.NET Framework (current version)
Creates a continuation task that will be started upon the completion of a set of provided tasks.
Namespace:
System.Threading.Tasks Assembly:
mscorlib (in mscorlib.dll)
Name Description ContinueWhenAll(array<Task^>^, Func<array<Task^>^, TResult>^) Creates a continuation task that will be started upon the completion of a set of provided tasks.
ContinueWhenAll(array<Task^>^, Func<array<Task^>^, TResult>^, CancellationToken) Creates a continuation task that will be started upon the completion of a set of provided tasks.
ContinueWhenAll(array<Task^>^, Func<array<Task^>^, TResult>^, CancellationToken, TaskContinuationOptions, TaskScheduler^) Creates a continuation task that will be started upon the completion of a set of provided Tasks.
ContinueWhenAll(array<Task^>^, Func<array<Task^>^, TResult>^, TaskContinuationOptions) Creates a continuation task that will be started upon the completion of a set of provided Tasks.
ContinueWhenAll<TAntecedentResult> (array<Task<TAntecedentResult>^>^, Func<array<Task<TAntecedentResult>^>^, TResult>^) Creates a continuation task that will be started upon the completion of a set of provided tasks.
ContinueWhenAll<TAntecedentResult> (array<Task<TAntecedentResult>^>^, Func<array<Task<TAntecedentResult>^>^, TResult>^, CancellationToken) Creates a continuation task that will be started upon the completion of a set of provided tasks.
ContinueWhenAll<TAntecedentResult> (array<Task<TAntecedentResult>^>^, Func<array<Task<TAntecedentResult>^>^, TResult>^, CancellationToken, TaskContinuationOptions, TaskScheduler^) Creates a continuation task that will be started upon the completion of a set of provided tasks.
ContinueWhenAll<TAntecedentResult> (array<Task<TAntecedentResult>^>^, Func<array<Task<TAntecedentResult>^>^, TResult>^, TaskContinuationOptions) Creates a continuation task that will be started upon the completion of a set of provided tasks.
Return to top