0 out of 1 rated this helpful - Rate this topic

Parallel.ForEach<TSource> Method (IEnumerable<TSource>, Action<TSource, ParallelLoopState>)

Executes a foreach (For Each in Visual Basic) operation on an IEnumerable<TSource> in which iterations may run in parallel, and the state of the loop can be monitored and manipulated.

Namespace:  System.Threading.Tasks
Assembly:  mscorlib (in mscorlib.dll)
public static ParallelLoopResult ForEach<TSource>(
	IEnumerable<TSource> source,
	Action<TSource, ParallelLoopState> body
)

Type Parameters

TSource

The type of the data in the source.

Parameters

source
Type: System.Collections.Generic.IEnumerable<TSource>
An enumerable data source.
body
Type: System.Action<TSource, ParallelLoopState>
The delegate that is invoked once per iteration.

Return Value

Type: System.Threading.Tasks.ParallelLoopResult
A ParallelLoopResult structure that contains information on what portion of the loop completed.
Exception Condition
ArgumentNullException

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

-or-

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

AggregateException

The exception that contains all the individual exceptions thrown on all threads.

The body delegate is invoked once for each element in the source enumerable. It is provided with the following parameters: the current element, and a ParallelLoopState instance that may be used to break out of the loop prematurely.

.NET Framework

Supported in: 4

.NET Framework Client Profile

Supported in: 4

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ