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