Expand Minimize
This topic has not yet been rated - Rate this topic

TaskFactory.ContinueWhenAny Method

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

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

  Name Description
Public method ContinueWhenAny(Task[], Action<Task>) Creates a continuation Task that will be started upon the completion of any Task in the provided set.
Public method ContinueWhenAny<TResult>(Task[], Func<Task, TResult>) Creates a continuation Task<TResult> that will be started upon the completion of any Task in the provided set.
Public method ContinueWhenAny<TAntecedentResult>(Task<TAntecedentResult>[], Action<Task<TAntecedentResult>>) Creates a continuation Task that will be started upon the completion of any Task in the provided set.
Public method ContinueWhenAny<TAntecedentResult, TResult>(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.
Public method ContinueWhenAny(Task[], Action<Task>, CancellationToken) Creates a continuation Task that will be started upon the completion of any Task in the provided set.
Public method ContinueWhenAny(Task[], Action<Task>, TaskContinuationOptions) Creates a continuation Task that will be started upon the completion of any Task in the provided set.
Public method ContinueWhenAny<TResult>(Task[], Func<Task, TResult>, CancellationToken) Creates a continuation Task<TResult> that will be started upon the completion of any Task in the provided set.
Public method ContinueWhenAny<TResult>(Task[], Func<Task, TResult>, TaskContinuationOptions) Creates a continuation Task<TResult> that will be started upon the completion of any Task in the provided set.
Public method ContinueWhenAny<TAntecedentResult>(Task<TAntecedentResult>[], Action<Task<TAntecedentResult>>, CancellationToken) Creates a continuation Task that will be started upon the completion of any Task in the provided set.
Public method ContinueWhenAny<TAntecedentResult>(Task<TAntecedentResult>[], Action<Task<TAntecedentResult>>, TaskContinuationOptions) Creates a continuation Task that will be started upon the completion of any Task in the provided set.
Public method ContinueWhenAny<TAntecedentResult, TResult>(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.
Public method ContinueWhenAny<TAntecedentResult, TResult>(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.
Public method ContinueWhenAny(Task[], Action<Task>, CancellationToken, TaskContinuationOptions, TaskScheduler) Creates a continuation Task that will be started upon the completion of any Task in the provided set.
Public method ContinueWhenAny<TResult>(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.
Public method ContinueWhenAny<TAntecedentResult>(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.
Public method ContinueWhenAny<TAntecedentResult, TResult>(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.
Top
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.