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.

TaskFactory::ContinueWhenAny Method

 

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)

NameDescription
System_CAPS_pubmethodContinueWhenAny(array<Task^>^, Action<Task^>^)

Creates a continuation Task that will be started upon the completion of any Task in the provided set.

System_CAPS_pubmethodContinueWhenAny(array<Task^>^, Action<Task^>^, CancellationToken)

Creates a continuation Task that will be started upon the completion of any Task in the provided set.

System_CAPS_pubmethodContinueWhenAny(array<Task^>^, Action<Task^>^, CancellationToken, TaskContinuationOptions, TaskScheduler^)

Creates a continuation Task that will be started upon the completion of any Task in the provided set.

System_CAPS_pubmethodContinueWhenAny(array<Task^>^, Action<Task^>^, TaskContinuationOptions)

Creates a continuation Task that will be started upon the completion of any Task in the provided set.

System_CAPS_pubmethodContinueWhenAny<TResult>(array<Task^>^, Func<Task^, TResult>^)

Creates a continuation Task<TResult> that will be started upon the completion of any Task in the provided set.

System_CAPS_pubmethodContinueWhenAny<TResult>(array<Task^>^, Func<Task^, TResult>^, CancellationToken)

Creates a continuation Task<TResult> that will be started upon the completion of any Task in the provided set.

System_CAPS_pubmethodContinueWhenAny<TResult>(array<Task^>^, Func<Task^, TResult>^, CancellationToken, TaskContinuationOptions, TaskScheduler^)

Creates a continuation Task<TResult> that will be started upon the completion of any Task in the provided set.

System_CAPS_pubmethodContinueWhenAny<TResult>(array<Task^>^, Func<Task^, TResult>^, TaskContinuationOptions)

Creates a continuation Task<TResult> that will be started upon the completion of any Task in the provided set.

System_CAPS_pubmethodContinueWhenAny<TAntecedentResult>(array<Task<TAntecedentResult>^>^, Action<Task<TAntecedentResult>^>^)

Creates a continuation Task that will be started upon the completion of any Task in the provided set.

System_CAPS_pubmethodContinueWhenAny<TAntecedentResult>(array<Task<TAntecedentResult>^>^, Action<Task<TAntecedentResult>^>^, CancellationToken)

Creates a continuation Task that will be started upon the completion of any Task in the provided set.

System_CAPS_pubmethodContinueWhenAny<TAntecedentResult>(array<Task<TAntecedentResult>^>^, Action<Task<TAntecedentResult>^>^, CancellationToken, TaskContinuationOptions, TaskScheduler^)

Creates a continuation Task that will be started upon the completion of any Task in the provided set.

System_CAPS_pubmethodContinueWhenAny<TAntecedentResult>(array<Task<TAntecedentResult>^>^, Action<Task<TAntecedentResult>^>^, TaskContinuationOptions)

Creates a continuation Task that will be started upon the completion of any Task in the provided set.

System_CAPS_pubmethodContinueWhenAny<TAntecedentResult, TResult>(array<Task<TAntecedentResult>^>^, Func<Task<TAntecedentResult>^, TResult>^)

Creates a continuation Task<TResult> that will be started upon the completion of any Task in the provided set.

System_CAPS_pubmethodContinueWhenAny<TAntecedentResult, TResult>(array<Task<TAntecedentResult>^>^, Func<Task<TAntecedentResult>^, TResult>^, CancellationToken)

Creates a continuation Task<TResult> that will be started upon the completion of any Task in the provided set.

System_CAPS_pubmethodContinueWhenAny<TAntecedentResult, TResult>(array<Task<TAntecedentResult>^>^, Func<Task<TAntecedentResult>^, TResult>^, CancellationToken, TaskContinuationOptions, TaskScheduler^)

Creates a continuation Task<TResult> that will be started upon the completion of any Task in the provided set.

System_CAPS_pubmethodContinueWhenAny<TAntecedentResult, TResult>(array<Task<TAntecedentResult>^>^, Func<Task<TAntecedentResult>^, TResult>^, TaskContinuationOptions)

Creates a continuation Task<TResult> that will be started upon the completion of any Task in the provided set.

Return to top
Show:
© 2017 Microsoft