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.
This topic has not yet been rated - Rate this topic

TaskFactory.ContinueWhenAny Method (Task[], Action<Task>)

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)
public Task ContinueWhenAny(
	Task[] tasks,
	Action<Task> continuationAction
)

Parameters

tasks
Type: System.Threading.Tasks.Task[]
The array of tasks from which to continue when one task completes.
continuationAction
Type: System.Action<Task>
The action delegate to execute when one task in the tasks array completes.

Return Value

Type: System.Threading.Tasks.Task
The new continuation Task.
ExceptionCondition
ObjectDisposedException

The exception that is thrown when one of the elements in the tasks array has been disposed.

ArgumentNullException

The exception that is thrown when the tasks array is null.

-or-

The exception that is thrown when the continuationAction argument is null.

ArgumentException

The exception that is thrown when the tasks array contains a null value.

-or-

The exception that is thrown when the tasks array is empty.

The following example shows how to use ContinueWhenAny and ContinueWhenAll:

Silverlight

Supported in: 5

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.

Did you find this helpful?
(1500 characters remaining)

Community Additions

© 2013 Microsoft. All rights reserved.