Update 07082021

This commit is contained in:
2021-08-07 09:44:37 +02:00
parent 1ff218a129
commit 4d443fdfd4
5663 changed files with 6581858 additions and 1321 deletions

View File

@@ -0,0 +1,461 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Threading.Tasks.Parallel</name>
</assembly>
<members>
<member name="T:System.Threading.Tasks.Parallel">
<summary>Provides support for parallel loops and regions.</summary>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Action{System.Int32})">
<summary>Executes a for (For in Visual Basic) loop in which iterations may run in parallel.</summary>
<returns>A structure that contains information about which portion of the loop completed.</returns>
<param name="fromInclusive">The start index, inclusive.</param>
<param name="toExclusive">The end index, exclusive.</param>
<param name="body">The delegate that is invoked once per iteration.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Action{System.Int32,System.Threading.Tasks.ParallelLoopState})">
<summary>Executes a for (For in Visual Basic) loop in which iterations may run in parallel and the state of the loop can be monitored and manipulated. </summary>
<returns>A structure that contains information about which portion of the loop completed.</returns>
<param name="fromInclusive">The start index, inclusive.</param>
<param name="toExclusive">The end index, exclusive.</param>
<param name="body">The delegate that is invoked once per iteration.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int32,System.Int32,System.Func{``0},System.Func{System.Int32,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>Executes a for (For in Visual Basic) loop with thread-local data in which iterations may run in parallel, and the state of the loop can be monitored and manipulated.</summary>
<returns>A structure that contains information about which portion of the loop completed.</returns>
<param name="fromInclusive">The start index, inclusive.</param>
<param name="toExclusive">The end index, exclusive.</param>
<param name="localInit">The function delegate that returns the initial state of the local data for each task.</param>
<param name="body">The delegate that is invoked once per iteration.</param>
<param name="localFinally">The delegate that performs a final action on the local state of each task.</param>
<typeparam name="TLocal">The type of the thread-local data.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Threading.Tasks.ParallelOptions,System.Action{System.Int32})">
<summary>Executes a for (For in Visual Basic) loop in which iterations may run in parallel and loop options can be configured.</summary>
<returns>A structure that contains information about which portion of the loop completed.</returns>
<param name="fromInclusive">The start index, inclusive.</param>
<param name="toExclusive">The end index, exclusive.</param>
<param name="parallelOptions">An object that configures the behavior of this operation.</param>
<param name="body">The delegate that is invoked once per iteration.</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Threading.Tasks.ParallelOptions,System.Action{System.Int32,System.Threading.Tasks.ParallelLoopState})">
<summary>Executes a for (For in Visual Basic) loop in which iterations may run in parallel, loop options can be configured, and the state of the loop can be monitored and manipulated.</summary>
<returns>A structure that contains information about which portion of the loop completed.</returns>
<param name="fromInclusive">The start index, inclusive.</param>
<param name="toExclusive">The end index, exclusive.</param>
<param name="parallelOptions">An object that configures the behavior of this operation.</param>
<param name="body">The delegate that is invoked once per iteration.</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int32,System.Int32,System.Threading.Tasks.ParallelOptions,System.Func{``0},System.Func{System.Int32,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>Executes a for (For in Visual Basic) loop with thread-local data in which iterations may run in parallel, loop options can be configured, and the state of the loop can be monitored and manipulated.</summary>
<returns>A structure that contains information about which portion of the loop completed.</returns>
<param name="fromInclusive">The start index, inclusive.</param>
<param name="toExclusive">The end index, exclusive.</param>
<param name="parallelOptions">An object that configures the behavior of this operation.</param>
<param name="localInit">The function delegate that returns the initial state of the local data for each task.</param>
<param name="body">The delegate that is invoked once per iteration.</param>
<param name="localFinally">The delegate that performs a final action on the local state of each task.</param>
<typeparam name="TLocal">The type of the thread-local data.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Action{System.Int64})">
<summary>Executes a for (For in Visual Basic) loop with 64-bit indexes in which iterations may run in parallel.</summary>
<returns>A structure that contains information about which portion of the loop completed.</returns>
<param name="fromInclusive">The start index, inclusive.</param>
<param name="toExclusive">The end index, exclusive.</param>
<param name="body">The delegate that is invoked once per iteration.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Action{System.Int64,System.Threading.Tasks.ParallelLoopState})">
<summary>Executes a for (For in Visual Basic) loop with 64-bit indexes in which iterations may run in parallel and the state of the loop can be monitored and manipulated.</summary>
<returns>A <see cref="T:System.Threading.Tasks.ParallelLoopResult" /> structure that contains information on what portion of the loop completed.</returns>
<param name="fromInclusive">The start index, inclusive.</param>
<param name="toExclusive">The end index, exclusive.</param>
<param name="body">The delegate that is invoked once per iteration.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int64,System.Int64,System.Func{``0},System.Func{System.Int64,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>Executes a for (For in Visual Basic) loop with 64-bit indexes and thread-local data in which iterations may run in parallel, and the state of the loop can be monitored and manipulated.</summary>
<returns>A structure that contains information about which portion of the loop completed.</returns>
<param name="fromInclusive">The start index, inclusive.</param>
<param name="toExclusive">The end index, exclusive.</param>
<param name="localInit">The function delegate that returns the initial state of the local data for each task.</param>
<param name="body">The delegate that is invoked once per iteration.</param>
<param name="localFinally">The delegate that performs a final action on the local state of each task.</param>
<typeparam name="TLocal">The type of the thread-local data.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Threading.Tasks.ParallelOptions,System.Action{System.Int64})">
<summary>Executes a for (For in Visual Basic) loop with 64-bit indexes in which iterations may run in parallel and loop options can be configured.</summary>
<returns>A structure that contains information about which portion of the loop completed.</returns>
<param name="fromInclusive">The start index, inclusive.</param>
<param name="toExclusive">The end index, exclusive.</param>
<param name="parallelOptions">An object that configures the behavior of this operation.</param>
<param name="body">The delegate that is invoked once per iteration.</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Threading.Tasks.ParallelOptions,System.Action{System.Int64,System.Threading.Tasks.ParallelLoopState})">
<summary>Executes a for (For in Visual Basic) loop with 64-bit indexes in which iterations may run in parallel, loop options can be configured, and the state of the loop can be monitored and manipulated.</summary>
<returns>A structure that contains information about which portion of the loop completed.</returns>
<param name="fromInclusive">The start index, inclusive.</param>
<param name="toExclusive">The end index, exclusive.</param>
<param name="parallelOptions">An object that configures the behavior of this operation.</param>
<param name="body">The delegate that is invoked once per iteration.</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int64,System.Int64,System.Threading.Tasks.ParallelOptions,System.Func{``0},System.Func{System.Int64,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>Executes a for (For in Visual Basic) loop with 64-bit indexes and thread-local data in which iterations may run in parallel, loop options can be configured, and the state of the loop can be monitored and manipulated.</summary>
<returns>A structure that contains information about which portion of the loop completed.</returns>
<param name="fromInclusive">The start index, inclusive.</param>
<param name="toExclusive">The end index, exclusive.</param>
<param name="parallelOptions">An object that configures the behavior of this operation.</param>
<param name="localInit">The function delegate that returns the initial state of the local data for each thread.</param>
<param name="body">The delegate that is invoked once per iteration.</param>
<param name="localFinally">The delegate that performs a final action on the local state of each thread.</param>
<typeparam name="TLocal">The type of the thread-local data.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.OrderablePartitioner{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary>Executes a foreach (For Each in Visual Basic) operation on a <see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" /> in which iterations may run in parallel and the state of the loop can be monitored and manipulated.</summary>
<returns>A structure that contains information about which portion of the loop completed.</returns>
<param name="source">The orderable partitioner that contains the original data source.</param>
<param name="body">The delegate that is invoked once per iteration.</param>
<typeparam name="TSource">The type of the elements in <paramref name="source" />.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> orderable partitioner returns false.-or-The <see cref="P:System.Collections.Concurrent.OrderablePartitioner`1.KeysNormalized" /> property in the source orderable partitioner returns false.-or-Any methods in the source orderable partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.OrderablePartitioner{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>Executes a foreach (For Each in Visual Basic) operation with thread-local data on a <see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" /> in which iterations may run in parallel, loop options can be configured, and the state of the loop can be monitored and manipulated.</summary>
<returns>A structure that contains information about which portion of the loop completed.</returns>
<param name="source">The orderable partitioner that contains the original data source.</param>
<param name="localInit">The function delegate that returns the initial state of the local data for each task.</param>
<param name="body">The delegate that is invoked once per iteration.</param>
<param name="localFinally">The delegate that performs a final action on the local state of each task.</param>
<typeparam name="TSource">The type of the elements in <paramref name="source" />.</typeparam>
<typeparam name="TLocal">The type of the thread-local data.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.OrderablePartitioner{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary>Executes a foreach (For Each in Visual Basic) operation on a <see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" /> in which iterations may run in parallel, loop options can be configured, and the state of the loop can be monitored and manipulated.</summary>
<returns>A structure that contains information about which portion of the loop completed.</returns>
<param name="source">The orderable partitioner that contains the original data source.</param>
<param name="parallelOptions">An object that configures the behavior of this operation.</param>
<param name="body">The delegate that is invoked once per iteration.</param>
<typeparam name="TSource">The type of the elements in <paramref name="source" />.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> orderable partitioner returns false.-or-The <see cref="P:System.Collections.Concurrent.OrderablePartitioner`1.KeysNormalized" /> property in the <paramref name="source" /> orderable partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> orderable partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.OrderablePartitioner{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>Executes a foreach (For Each in Visual Basic) operation with 64-bit indexes and with thread-local data on a <see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" /> in which iterations may run in parallel , loop options can be configured, and the state of the loop can be monitored and manipulated.</summary>
<returns>A structure that contains information about which portion of the loop completed.</returns>
<param name="source">The orderable partitioner that contains the original data source.</param>
<param name="parallelOptions">An object that configures the behavior of this operation.</param>
<param name="localInit">The function delegate that returns the initial state of the local data for each task.</param>
<param name="body">The delegate that is invoked once per iteration.</param>
<param name="localFinally">The delegate that performs a final action on the local state of each task.</param>
<typeparam name="TSource">The type of the elements in <paramref name="source" />.</typeparam>
<typeparam name="TLocal">The type of the thread-local data.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> or <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Action{``0})">
<summary>Executes a foreach (For Each in Visual Basic) operation on a <see cref="T:System.Collections.Concurrent.Partitioner" /> in which iterations may run in parallel.</summary>
<returns>A structure that contains information about which portion of the loop completed.</returns>
<param name="source">The partitioner that contains the original data source.</param>
<param name="body">The delegate that is invoked once per iteration.</param>
<typeparam name="TSource">The type of the elements in <paramref name="source" />.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> partitioner return null.-or-The <see cref="M:System.Collections.Concurrent.Partitioner`1.GetPartitions(System.Int32)" /> method in the <paramref name="source" /> partitioner does not return the correct number of partitions.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary>Executes a foreach (For Each in Visual Basic) operation on a <see cref="T:System.Collections.Concurrent.Partitioner" /> in which iterations may run in parallel, and the state of the loop can be monitored and manipulated.</summary>
<returns>A structure that contains information about which portion of the loop completed.</returns>
<param name="source">The partitioner that contains the original data source.</param>
<param name="body">The delegate that is invoked once per iteration.</param>
<typeparam name="TSource">The type of the elements in <paramref name="source" />.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-A method in the <paramref name="source" /> partitioner returns null.-or-The <see cref="M:System.Collections.Concurrent.Partitioner`1.GetPartitions(System.Int32)" /> method in the <paramref name="source" /> partitioner does not return the correct number of partitions.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.Partitioner{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>Executes a foreach (For Each in Visual Basic) operation with thread-local data on a <see cref="T:System.Collections.Concurrent.Partitioner" /> in which iterations may run in parallel and the state of the loop can be monitored and manipulated.</summary>
<returns>A structure that contains information about which portion of the loop completed.</returns>
<param name="source">The partitioner that contains the original data source.</param>
<param name="localInit">The function delegate that returns the initial state of the local data for each task.</param>
<param name="body">The delegate that is invoked once per iteration.</param>
<param name="localFinally">The delegate that performs a final action on the local state of each task.</param>
<typeparam name="TSource">The type of the elements in <paramref name="source" />.</typeparam>
<typeparam name="TLocal">The type of the thread-local data.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0})">
<summary>Executes a foreach (For Each in Visual Basic) operation on a <see cref="T:System.Collections.Concurrent.Partitioner" /> in which iterations may run in parallel and loop options can be configured.</summary>
<returns>A structure that contains information about which portion of the loop completed.</returns>
<param name="source">The partitioner that contains the original data source.</param>
<param name="parallelOptions">An object that configures the behavior of this operation.</param>
<param name="body">The delegate that is invoked once per iteration.</param>
<typeparam name="TSource">The type of the elements in <paramref name="source" />.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary>Executes a foreach (For Each in Visual Basic) operation on a <see cref="T:System.Collections.Concurrent.Partitioner" /> in which iterations may run in parallel, loop options can be configured, and the state of the loop can be monitored and manipulated.</summary>
<returns>A structure that contains information about which portion of the loop completed.</returns>
<param name="source">The partitioner that contains the original data source.</param>
<param name="parallelOptions">An object that configures the behavior of this operation.</param>
<param name="body">The delegate that is invoked once per iteration.</param>
<typeparam name="TSource">The type of the elements in <paramref name="source" />.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.Partitioner{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>Executes a foreach (For Each in Visual Basic) operation with thread-local data on a <see cref="T:System.Collections.Concurrent.Partitioner" /> in which iterations may run in parallel, loop options can be configured, and the state of the loop can be monitored and manipulated.</summary>
<returns>A structure that contains information about which portion of the loop completed.</returns>
<param name="source">The partitioner that contains the original data source.</param>
<param name="parallelOptions">An object that configures the behavior of this operation.</param>
<param name="localInit">The function delegate that returns the initial state of the local data for each task.</param>
<param name="body">The delegate that is invoked once per iteration.</param>
<param name="localFinally">The delegate that performs a final action on the local state of each task.</param>
<typeparam name="TSource">The type of the elements in <paramref name="source" />.</typeparam>
<typeparam name="TLocal">The type of the thread-local data.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0})">
<summary>Executes a foreach (For Each in Visual Basic) operation on an <see cref="T:System.Collections.IEnumerable" /> in which iterations may run in parallel.</summary>
<returns>A structure that contains information about which portion of the loop completed.</returns>
<param name="source">An enumerable data source.</param>
<param name="body">The delegate that is invoked once per iteration.</param>
<typeparam name="TSource">The type of the data in the source.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary>Executes a foreach (For Each in Visual Basic) operation on an <see cref="T:System.Collections.IEnumerable" /> in which iterations may run in parallel, and the state of the loop can be monitored and manipulated.</summary>
<returns>A structure that contains information about which portion of the loop completed.</returns>
<param name="source">An enumerable data source.</param>
<param name="body">The delegate that is invoked once per iteration.</param>
<typeparam name="TSource">The type of the data in the source.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary>Executes a foreach (For Each in Visual Basic) operation with 64-bit indexes on an <see cref="T:System.Collections.IEnumerable" /> in which iterations may run in parallel, and the state of the loop can be monitored and manipulated.</summary>
<returns>A structure that contains information about which portion of the loop completed.</returns>
<param name="source">An enumerable data source.</param>
<param name="body">The delegate that is invoked once per iteration.</param>
<typeparam name="TSource">The type of the data in the source.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>Executes a foreach (For Each in Visual Basic) operation with thread-local data on an <see cref="T:System.Collections.IEnumerable" /> in which iterations may run in parallel, and the state of the loop can be monitored and manipulated.</summary>
<returns>A structure that contains information about which portion of the loop completed.</returns>
<param name="source">An enumerable data source.</param>
<param name="localInit">The function delegate that returns the initial state of the local data for each task.</param>
<param name="body">The delegate that is invoked once per iteration.</param>
<param name="localFinally">The delegate that performs a final action on the local state of each task.</param>
<typeparam name="TSource">The type of the data in the source.</typeparam>
<typeparam name="TLocal">The type of the thread-local data.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>Executes a foreach (For Each in Visual Basic) operation with thread-local data on an <see cref="T:System.Collections.IEnumerable" /> in which iterations may run in parallel and the state of the loop can be monitored and manipulated.</summary>
<returns>A structure that contains information about which portion of the loop completed.</returns>
<param name="source">An enumerable data source.</param>
<param name="localInit">The function delegate that returns the initial state of the local data for each task.</param>
<param name="body">The delegate that is invoked once per iteration.</param>
<param name="localFinally">The delegate that performs a final action on the local state of each task.</param>
<typeparam name="TSource">The type of the data in the source.</typeparam>
<typeparam name="TLocal">The type of the thread-local data.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0})">
<summary>Executes a foreach (For Each in Visual Basic) operation on an <see cref="T:System.Collections.IEnumerable" /> in which iterations may run in parallel and loop options can be configured.</summary>
<returns>A structure that contains information about which portion of the loop completed.</returns>
<param name="source">An enumerable data source.</param>
<param name="parallelOptions">An object that configures the behavior of this operation.</param>
<param name="body">The delegate that is invoked once per iteration.</param>
<typeparam name="TSource">The type of the data in the source.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary>Executes a foreach (For Each in Visual Basic) operation on an <see cref="T:System.Collections.IEnumerable" /> in which iterations may run in parallel, loop options can be configured, and the state of the loop can be monitored and manipulated.</summary>
<returns>A structure that contains information about which portion of the loop completed.</returns>
<param name="source">An enumerable data source.</param>
<param name="parallelOptions">An object that configures the behavior of this operation.</param>
<param name="body">The delegate that is invoked once per iteration.</param>
<typeparam name="TSource">The type of the data in the source.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary>Executes a foreach (For Each in Visual Basic) operation with 64-bit indexes on an <see cref="T:System.Collections.IEnumerable" /> in which iterations may run in parallel, loop options can be configured, and the state of the loop can be monitored and manipulated.</summary>
<returns>A structure that contains information about which portion of the loop completed.</returns>
<param name="source">An enumerable data source.</param>
<param name="parallelOptions">An object that configures the behavior of this operation.</param>
<param name="body">The delegate that is invoked once per iteration.</param>
<typeparam name="TSource">The type of the data in the source.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>Executes a foreach (For Each in Visual Basic) operation with thread-local data on an <see cref="T:System.Collections.IEnumerable" /> in which iterations may run in parallel, loop options can be configured, and the state of the loop can be monitored and manipulated..</summary>
<returns>A structure that contains information about which portion of the loop completed.</returns>
<param name="source">An enumerable data source.</param>
<param name="parallelOptions">An object that configures the behavior of this operation.</param>
<param name="localInit">The function delegate that returns the initial state of the local data for each task.</param>
<param name="body">The delegate that is invoked once per iteration.</param>
<param name="localFinally">The delegate that performs a final action on the local state of each task.</param>
<typeparam name="TSource">The type of the data in the source.</typeparam>
<typeparam name="TLocal">The type of the thread-local data.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>Executes a foreach (For Each in Visual Basic) operation with thread-local data and 64-bit indexes on an <see cref="T:System.Collections.IEnumerable" /> in which iterations may run in parallel, loop options can be configured, and the state of the loop can be monitored and manipulated.</summary>
<returns>A structure that contains information about which portion of the loop completed.</returns>
<param name="source">An enumerable data source.</param>
<param name="parallelOptions">An object that configures the behavior of this operation.</param>
<param name="localInit">The function delegate that returns the initial state of the local data for each task.</param>
<param name="body">The delegate that is invoked once per iteration.</param>
<param name="localFinally">The delegate that performs a final action on the local state of each task.</param>
<typeparam name="TSource">The type of the data in the source.</typeparam>
<typeparam name="TLocal">The type of the thread-local data.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.Invoke(System.Action[])">
<summary>Executes each of the provided actions, possibly in parallel.</summary>
<param name="actions">An array of <see cref="T:System.Action" /> to execute.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="actions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that is thrown when any action in the <paramref name="actions" /> array throws an exception.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="actions" /> array contains a null element.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.Invoke(System.Threading.Tasks.ParallelOptions,System.Action[])">
<summary>Executes each of the provided actions, possibly in parallel, unless the operation is cancelled by the user.</summary>
<param name="parallelOptions">An object that configures the behavior of this operation.</param>
<param name="actions">An array of actions to execute.</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> is set.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="actions" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that is thrown when any action in the <paramref name="actions" /> array throws an exception.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="actions" /> array contains a null element.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="T:System.Threading.Tasks.ParallelLoopResult">
<summary>Provides completion status on the execution of a <see cref="T:System.Threading.Tasks.Parallel" /> loop.</summary>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopResult.IsCompleted">
<summary>Gets whether the loop ran to completion, such that all iterations of the loop were executed and the loop didn't receive a request to end prematurely.</summary>
<returns>true if the loop ran to completion; otherwise false;</returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopResult.LowestBreakIteration">
<summary>Gets the index of the lowest iteration from which <see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> was called.</summary>
<returns>Returns an integer that represents the lowest iteration from which the Break statement was called.</returns>
</member>
<member name="T:System.Threading.Tasks.ParallelLoopState">
<summary>Enables iterations of parallel loops to interact with other iterations. An instance of this class is provided by the <see cref="T:System.Threading.Tasks.Parallel" /> class to each loop; you can not create instances in your code. </summary>
</member>
<member name="M:System.Threading.Tasks.ParallelLoopState.Break">
<summary>Communicates that the <see cref="T:System.Threading.Tasks.Parallel" /> loop should cease execution of iterations beyond the current iteration at the system's earliest convenience. </summary>
<exception cref="T:System.InvalidOperationException">The <see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" /> method was previously called. <see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> and <see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" /> may not be used in combination by iterations of the same loop.</exception>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.IsExceptional">
<summary>Gets whether any iteration of the loop has thrown an exception that went unhandled by that iteration. </summary>
<returns>true if an unhandled exception was thrown; otherwise, false. </returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.IsStopped">
<summary>Gets whether any iteration of the loop has called the <see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" /> method. </summary>
<returns>true if any iteration has stopped the loop by calling the <see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" /> method; otherwise, false. </returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.LowestBreakIteration">
<summary>Gets the lowest iteration of the loop from which <see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> was called. </summary>
<returns>The lowest iteration from which <see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> was called. In the case of a <see cref="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Action{``0})" /> loop, the value is based on an internally-generated index. </returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.ShouldExitCurrentIteration">
<summary>Gets whether the current iteration of the loop should exit based on requests made by this or other iterations.</summary>
<returns>true if the current iteration should exit; otherwise, false. </returns>
</member>
<member name="M:System.Threading.Tasks.ParallelLoopState.Stop">
<summary>Communicates that the <see cref="T:System.Threading.Tasks.Parallel" /> loop should cease execution at the system's earliest convenience.</summary>
<exception cref="T:System.InvalidOperationException">The <see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> method was called previously. <see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> and <see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" /> may not be used in combination by iterations of the same loop.</exception>
</member>
<member name="T:System.Threading.Tasks.ParallelOptions">
<summary>Stores options that configure the operation of methods on the <see cref="T:System.Threading.Tasks.Parallel" /> class.</summary>
</member>
<member name="M:System.Threading.Tasks.ParallelOptions.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Threading.Tasks.ParallelOptions" /> class.</summary>
</member>
<member name="P:System.Threading.Tasks.ParallelOptions.CancellationToken">
<summary>Gets or sets the <see cref="T:System.Threading.CancellationToken" /> associated with this <see cref="T:System.Threading.Tasks.ParallelOptions" /> instance.</summary>
<returns>The token that is associated with this instance.</returns>
</member>
<member name="P:System.Threading.Tasks.ParallelOptions.MaxDegreeOfParallelism">
<summary>Gets or sets the maximum number of concurrent tasks enabled by this <see cref="T:System.Threading.Tasks.ParallelOptions" /> instance.</summary>
<returns>An integer that represents the maximum degree of parallelism.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">The property is being set to zero or to a value that is less than -1.</exception>
</member>
<member name="P:System.Threading.Tasks.ParallelOptions.TaskScheduler">
<summary>Gets or sets the <see cref="T:System.Threading.Tasks.TaskScheduler" /> associated with this <see cref="T:System.Threading.Tasks.ParallelOptions" /> instance. Setting this property to null indicates that the current scheduler should be used.</summary>
<returns>The task scheduler that is associated with this instance.</returns>
</member>
</members>
</doc>

View File

@@ -0,0 +1,461 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Threading.Tasks.Parallel</name>
</assembly>
<members>
<member name="T:System.Threading.Tasks.Parallel">
<summary>Unterstützt parallele Schleifen und Bereiche.</summary>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Action{System.Int32})">
<summary>Führt eine for-Schleife (For in Visual Basic) aus, in der Iterationen parallel ausgeführt werden können.</summary>
<returns>Eine Struktur, die Informationen darüber enthält, welcher Abschnitt der Schleife abgeschlossen ist.</returns>
<param name="fromInclusive">Der Startindex, einschließend.</param>
<param name="toExclusive">Der Endindex, ausschließend.</param>
<param name="body">Der Delegat, der einmal pro Iteration aufgerufen wird.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Action{System.Int32,System.Threading.Tasks.ParallelLoopState})">
<summary>Führt eine for (For in Visual Basic)-Schleife aus, in der Iterationen parallel ausgeführt werden können und der Status der Schleife beobachtet und bearbeitet werden kann. </summary>
<returns>Eine Struktur, die Informationen darüber enthält, welcher Abschnitt der Schleife abgeschlossen ist.</returns>
<param name="fromInclusive">Der Startindex, einschließend.</param>
<param name="toExclusive">Der Endindex, ausschließend.</param>
<param name="body">Der Delegat, der einmal pro Iteration aufgerufen wird.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int32,System.Int32,System.Func{``0},System.Func{System.Int32,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>Führt eine for-Schleife (For in Visual Basic) mit lokalen Threaddaten aus, in der Iterationen parallel ausgeführt und der Status der Schleife beobachtet und bearbeitet werden können.</summary>
<returns>Eine Struktur, die Informationen darüber enthält, welcher Abschnitt der Schleife abgeschlossen ist.</returns>
<param name="fromInclusive">Der Startindex, einschließend.</param>
<param name="toExclusive">Der Endindex, ausschließend.</param>
<param name="localInit">Der Funktionsdelegat, der den ursprünglichen Zustand der lokalen Daten für jede Aufgabe zurückgibt.</param>
<param name="body">Der Delegat, der einmal pro Iteration aufgerufen wird.</param>
<param name="localFinally">Der Delegat, der die endgültige Aktion beim lokalen Status jeder Aufgabe ausführt.</param>
<typeparam name="TLocal">Der Typ der threadlokalen Daten.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Threading.Tasks.ParallelOptions,System.Action{System.Int32})">
<summary>Führt eine for (For in Visual Basic)-Schleife aus, in der Iterationen parallel ausgeführt und Schleifenoptionen konfiguriert werden können.</summary>
<returns>Eine Struktur, die Informationen darüber enthält, welcher Abschnitt der Schleife abgeschlossen ist.</returns>
<param name="fromInclusive">Der Startindex, einschließend.</param>
<param name="toExclusive">Der Endindex, ausschließend.</param>
<param name="parallelOptions">Ein Objekt, das das Verhalten dieses Vorgangs konfiguriert.</param>
<param name="body">Der Delegat, der einmal pro Iteration aufgerufen wird.</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Threading.Tasks.ParallelOptions,System.Action{System.Int32,System.Threading.Tasks.ParallelLoopState})">
<summary>Führt eine for (For in Visual Basic)-Schleife aus, in der Iterationen parallel ausgeführt und Schleifenoptionen konfiguriert werden können und wo der Status der Schleife beobachtet und bearbeitet werden kann.</summary>
<returns>Eine Struktur, die Informationen darüber enthält, welcher Abschnitt der Schleife abgeschlossen ist.</returns>
<param name="fromInclusive">Der Startindex, einschließend.</param>
<param name="toExclusive">Der Endindex, ausschließend.</param>
<param name="parallelOptions">Ein Objekt, das das Verhalten dieses Vorgangs konfiguriert.</param>
<param name="body">Der Delegat, der einmal pro Iteration aufgerufen wird.</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int32,System.Int32,System.Threading.Tasks.ParallelOptions,System.Func{``0},System.Func{System.Int32,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>Führt eine for (For in Visual Basic)-Schleife mit lokalen Threaddaten aus, in der Iterationen parallel ausgeführt, Schleifenoptionen konfiguriert und der Status der Schleife beobachtet und bearbeitet werden können.</summary>
<returns>Eine Struktur, die Informationen darüber enthält, welcher Abschnitt der Schleife abgeschlossen ist.</returns>
<param name="fromInclusive">Der Startindex, einschließend.</param>
<param name="toExclusive">Der Endindex, ausschließend.</param>
<param name="parallelOptions">Ein Objekt, das das Verhalten dieses Vorgangs konfiguriert.</param>
<param name="localInit">Der Funktionsdelegat, der den ursprünglichen Zustand der lokalen Daten für jede Aufgabe zurückgibt.</param>
<param name="body">Der Delegat, der einmal pro Iteration aufgerufen wird.</param>
<param name="localFinally">Der Delegat, der die endgültige Aktion beim lokalen Status jeder Aufgabe ausführt.</param>
<typeparam name="TLocal">Der Typ der threadlokalen Daten.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Action{System.Int64})">
<summary>Führt eine for-Schleife (For in Visual Basic) mit 64-Bit-Indizes aus, in der Iterationen parallel ausgeführt werden können.</summary>
<returns>Eine Struktur, die Informationen darüber enthält, welcher Abschnitt der Schleife abgeschlossen ist.</returns>
<param name="fromInclusive">Der Startindex, einschließend.</param>
<param name="toExclusive">Der Endindex, ausschließend.</param>
<param name="body">Der Delegat, der einmal pro Iteration aufgerufen wird.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Action{System.Int64,System.Threading.Tasks.ParallelLoopState})">
<summary>Führt eine for-Schleife (For in Visual Basic) mit 64-Bit-Indizes aus, in der Iterationen parallel ausgeführt werden können und der Zustand der Schleife überwacht und bearbeitet werden kann.</summary>
<returns>Eine <see cref="T:System.Threading.Tasks.ParallelLoopResult" />-Struktur, die Informationen darüber enthält, welcher Teil der Schleife abgeschlossen ist.</returns>
<param name="fromInclusive">Der Startindex, einschließend.</param>
<param name="toExclusive">Der Endindex, ausschließend.</param>
<param name="body">Der Delegat, der einmal pro Iteration aufgerufen wird.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int64,System.Int64,System.Func{``0},System.Func{System.Int64,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>Führt eine for (For in Visual Basic)-Schleife mit 64-Bit-Indizes sowie lokalen Threaddaten aus, in denen Iterationen parallel ausgeführt werden können, und der Status der Schleife kann beobachtet und bearbeitet werden.</summary>
<returns>Eine Struktur, die Informationen darüber enthält, welcher Abschnitt der Schleife abgeschlossen ist.</returns>
<param name="fromInclusive">Der Startindex, einschließend.</param>
<param name="toExclusive">Der Endindex, ausschließend.</param>
<param name="localInit">Der Funktionsdelegat, der den ursprünglichen Zustand der lokalen Daten für jede Aufgabe zurückgibt.</param>
<param name="body">Der Delegat, der einmal pro Iteration aufgerufen wird.</param>
<param name="localFinally">Der Delegat, der die endgültige Aktion beim lokalen Status jeder Aufgabe ausführt.</param>
<typeparam name="TLocal">Der Typ der threadlokalen Daten.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Threading.Tasks.ParallelOptions,System.Action{System.Int64})">
<summary>Führt eine for (For in Visual Basic)-Schleife mit 64-Bit-Indizes aus, in der Iterationen parallel ausgeführt und Schleifenoptionen konfiguriert werden können.</summary>
<returns>Eine Struktur, die Informationen darüber enthält, welcher Abschnitt der Schleife abgeschlossen ist.</returns>
<param name="fromInclusive">Der Startindex, einschließend.</param>
<param name="toExclusive">Der Endindex, ausschließend.</param>
<param name="parallelOptions">Ein Objekt, das das Verhalten dieses Vorgangs konfiguriert.</param>
<param name="body">Der Delegat, der einmal pro Iteration aufgerufen wird.</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Threading.Tasks.ParallelOptions,System.Action{System.Int64,System.Threading.Tasks.ParallelLoopState})">
<summary>Führt eine for (For in Visual Basic)-Schleife mit 64-Bit-Indizes aus, in der Iterationen parallel ausgeführt und Schleifenoptionen konfiguriert werden können, und der Status der Schleife kann beobachtet und bearbeitet werden.</summary>
<returns>Eine Struktur, die Informationen darüber enthält, welcher Abschnitt der Schleife abgeschlossen ist.</returns>
<param name="fromInclusive">Der Startindex, einschließend.</param>
<param name="toExclusive">Der Endindex, ausschließend.</param>
<param name="parallelOptions">Ein Objekt, das das Verhalten dieses Vorgangs konfiguriert.</param>
<param name="body">Der Delegat, der einmal pro Iteration aufgerufen wird.</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int64,System.Int64,System.Threading.Tasks.ParallelOptions,System.Func{``0},System.Func{System.Int64,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>Führt eine for-Schleife (For in Visual Basic) mit 64-Bit Indizes und threadlokalen Daten aus. Iterationen können parallel ablaufen. Schleifenoptionen sind konfigurierbar, und der Schleifenstatus kann beobachtet und manipuliert werden.</summary>
<returns>Eine Struktur, die Informationen darüber enthält, welcher Abschnitt der Schleife abgeschlossen ist.</returns>
<param name="fromInclusive">Der Startindex, einschließend.</param>
<param name="toExclusive">Der Endindex, ausschließend.</param>
<param name="parallelOptions">Ein Objekt, das das Verhalten dieses Vorgangs konfiguriert.</param>
<param name="localInit">Der Funktionsdelegat, der den Ausgangszustand der lokalen Daten für jeden Thread zurückgibt.</param>
<param name="body">Der Delegat, der einmal pro Iteration aufgerufen wird.</param>
<param name="localFinally">Der Delegat, der eine abschließende Aktion für den lokalen Zustand jedes Threads ausführt.</param>
<typeparam name="TLocal">Der Typ der threadlokalen Daten.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.OrderablePartitioner{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary>Führt einen foreach-Vorgang (For Each in Visual Basic) mit einem <see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" /> aus. Iterationen können parallel ablaufen, und der Schleifenstatus kann beobachtet und manipuliert werden.</summary>
<returns>Eine Struktur, die Informationen darüber enthält, welcher Abschnitt der Schleife abgeschlossen ist.</returns>
<param name="source">Der sortierbare Partitionierer, der die ursprüngliche Datenquelle enthält.</param>
<param name="body">Der Delegat, der einmal pro Iteration aufgerufen wird.</param>
<typeparam name="TSource">Der Typ der Elemente in <paramref name="source" />.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> orderable partitioner returns false.-or-The <see cref="P:System.Collections.Concurrent.OrderablePartitioner`1.KeysNormalized" /> property in the source orderable partitioner returns false.-or-Any methods in the source orderable partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.OrderablePartitioner{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>Führt einen foreach-Vorgang (For Each in Visual Basic) mit threadlokalen Daten für einen <see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" /> aus. Iterationen können parallel ablaufen. Schleifenoptionen sind konfigurierbar. Der Schleifenstatus kann beobachtet und manipuliert werden.</summary>
<returns>Eine Struktur, die Informationen darüber enthält, welcher Abschnitt der Schleife abgeschlossen ist.</returns>
<param name="source">Der sortierbare Partitionierer, der die ursprüngliche Datenquelle enthält.</param>
<param name="localInit">Der Funktionsdelegat, der den ursprünglichen Zustand der lokalen Daten für jede Aufgabe zurückgibt.</param>
<param name="body">Der Delegat, der einmal pro Iteration aufgerufen wird.</param>
<param name="localFinally">Der Delegat, der die endgültige Aktion beim lokalen Status jeder Aufgabe ausführt.</param>
<typeparam name="TSource">Der Typ der Elemente in <paramref name="source" />.</typeparam>
<typeparam name="TLocal">Der Typ der threadlokalen Daten.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.OrderablePartitioner{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary>Führt einen foreach-Vorgang (For Each in Visual Basic) mit einem <see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" /> aus. Iterationen können parallel ablaufen, Schleifenoptionen sind konfigurierbar, und der Schleifenstatus kann beobachtet und manipuliert werden.</summary>
<returns>Eine Struktur, die Informationen darüber enthält, welcher Abschnitt der Schleife abgeschlossen ist.</returns>
<param name="source">Der sortierbare Partitionierer, der die ursprüngliche Datenquelle enthält.</param>
<param name="parallelOptions">Ein Objekt, das das Verhalten dieses Vorgangs konfiguriert.</param>
<param name="body">Der Delegat, der einmal pro Iteration aufgerufen wird.</param>
<typeparam name="TSource">Der Typ der Elemente in <paramref name="source" />.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> orderable partitioner returns false.-or-The <see cref="P:System.Collections.Concurrent.OrderablePartitioner`1.KeysNormalized" /> property in the <paramref name="source" /> orderable partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> orderable partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.OrderablePartitioner{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>Führt einen foreach-Vorgang (For Each in Visual Basic) mit 64-Bit-Indizes und threadlokalen Daten für einen <see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" /> aus. Iterationen können parallel ablaufen. Schleifenoptionen sind konfigurierbar. Der Schleifenstatus kann beobachtet und manipuliert werden.</summary>
<returns>Eine Struktur, die Informationen darüber enthält, welcher Abschnitt der Schleife abgeschlossen ist.</returns>
<param name="source">Der sortierbare Partitionierer, der die ursprüngliche Datenquelle enthält.</param>
<param name="parallelOptions">Ein Objekt, das das Verhalten dieses Vorgangs konfiguriert.</param>
<param name="localInit">Der Funktionsdelegat, der den ursprünglichen Zustand der lokalen Daten für jede Aufgabe zurückgibt.</param>
<param name="body">Der Delegat, der einmal pro Iteration aufgerufen wird.</param>
<param name="localFinally">Der Delegat, der die endgültige Aktion beim lokalen Status jeder Aufgabe ausführt.</param>
<typeparam name="TSource">Der Typ der Elemente in <paramref name="source" />.</typeparam>
<typeparam name="TLocal">Der Typ der threadlokalen Daten.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> or <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Action{``0})">
<summary>Führt einen foreach-Vorgang (For Each in Visual Basic) für ein <see cref="T:System.Collections.Concurrent.Partitioner" />-Objekt aus, in dem Iterationen parallel ausgeführt werden können.</summary>
<returns>Eine Struktur, die Informationen darüber enthält, welcher Abschnitt der Schleife abgeschlossen ist.</returns>
<param name="source">Der Partitionierer, der die ursprüngliche Datenquelle enthält.</param>
<param name="body">Der Delegat, der einmal pro Iteration aufgerufen wird.</param>
<typeparam name="TSource">Der Typ der Elemente in <paramref name="source" />.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> partitioner return null.-or-The <see cref="M:System.Collections.Concurrent.Partitioner`1.GetPartitions(System.Int32)" /> method in the <paramref name="source" /> partitioner does not return the correct number of partitions.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary>Führt einen foreach-Vorgang (For Each in Visual Basic) mit einem <see cref="T:System.Collections.Concurrent.Partitioner" /> aus. Iterationen können parallel ablaufen, und der Schleifenstatus kann beobachtet und manipuliert werden.</summary>
<returns>Eine Struktur, die Informationen darüber enthält, welcher Abschnitt der Schleife abgeschlossen ist.</returns>
<param name="source">Der Partitionierer, der die ursprüngliche Datenquelle enthält.</param>
<param name="body">Der Delegat, der einmal pro Iteration aufgerufen wird.</param>
<typeparam name="TSource">Der Typ der Elemente in <paramref name="source" />.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-A method in the <paramref name="source" /> partitioner returns null.-or-The <see cref="M:System.Collections.Concurrent.Partitioner`1.GetPartitions(System.Int32)" /> method in the <paramref name="source" /> partitioner does not return the correct number of partitions.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.Partitioner{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>Führt einen foreach-Vorgang (For Each in Visual Basic) mit threadlokalen Daten für einen <see cref="T:System.Collections.Concurrent.Partitioner" /> aus. Iterationen können parallel ablaufen. Der Schleifenstatus kann beobachtet und manipuliert werden.</summary>
<returns>Eine Struktur, die Informationen darüber enthält, welcher Abschnitt der Schleife abgeschlossen ist.</returns>
<param name="source">Der Partitionierer, der die ursprüngliche Datenquelle enthält.</param>
<param name="localInit">Der Funktionsdelegat, der den ursprünglichen Zustand der lokalen Daten für jede Aufgabe zurückgibt.</param>
<param name="body">Der Delegat, der einmal pro Iteration aufgerufen wird.</param>
<param name="localFinally">Der Delegat, der die endgültige Aktion beim lokalen Status jeder Aufgabe ausführt.</param>
<typeparam name="TSource">Der Typ der Elemente in <paramref name="source" />.</typeparam>
<typeparam name="TLocal">Der Typ der threadlokalen Daten.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0})">
<summary>Führt einen foreach-Vorgang (For Each in Visual Basic) mit einem <see cref="T:System.Collections.Concurrent.Partitioner" /> aus. Iterationen können parallel ausgeführt werden, Schleifenoptionen sind konfigurierbar.</summary>
<returns>Eine Struktur, die Informationen darüber enthält, welcher Abschnitt der Schleife abgeschlossen ist.</returns>
<param name="source">Der Partitionierer, der die ursprüngliche Datenquelle enthält.</param>
<param name="parallelOptions">Ein Objekt, das das Verhalten dieses Vorgangs konfiguriert.</param>
<param name="body">Der Delegat, der einmal pro Iteration aufgerufen wird.</param>
<typeparam name="TSource">Der Typ der Elemente in <paramref name="source" />.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary>Führt einen foreach-Vorgang (For Each in Visual Basic) mit einem <see cref="T:System.Collections.Concurrent.Partitioner" /> aus. Iterationen können parallel ablaufen, Schleifenoptionen sind konfigurierbar, und der Schleifenstatus kann beobachtet und manipuliert werden.</summary>
<returns>Eine Struktur, die Informationen darüber enthält, welcher Abschnitt der Schleife abgeschlossen ist.</returns>
<param name="source">Der Partitionierer, der die ursprüngliche Datenquelle enthält.</param>
<param name="parallelOptions">Ein Objekt, das das Verhalten dieses Vorgangs konfiguriert.</param>
<param name="body">Der Delegat, der einmal pro Iteration aufgerufen wird.</param>
<typeparam name="TSource">Der Typ der Elemente in <paramref name="source" />.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.Partitioner{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>Führt einen foreach-Vorgang (For Each in Visual Basic) mit threadlokalen Daten für einen <see cref="T:System.Collections.Concurrent.Partitioner" /> aus. Iterationen können parallel ablaufen. Schleifenoptionen sind konfigurierbar. Der Schleifenstatus kann beobachtet und manipuliert werden.</summary>
<returns>Eine Struktur, die Informationen darüber enthält, welcher Abschnitt der Schleife abgeschlossen ist.</returns>
<param name="source">Der Partitionierer, der die ursprüngliche Datenquelle enthält.</param>
<param name="parallelOptions">Ein Objekt, das das Verhalten dieses Vorgangs konfiguriert.</param>
<param name="localInit">Der Funktionsdelegat, der den ursprünglichen Zustand der lokalen Daten für jede Aufgabe zurückgibt.</param>
<param name="body">Der Delegat, der einmal pro Iteration aufgerufen wird.</param>
<param name="localFinally">Der Delegat, der die endgültige Aktion beim lokalen Status jeder Aufgabe ausführt.</param>
<typeparam name="TSource">Der Typ der Elemente in <paramref name="source" />.</typeparam>
<typeparam name="TLocal">Der Typ der threadlokalen Daten.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0})">
<summary>Führt einen foreach-Vorgang (For Each in Visual Basic) mit einem <see cref="T:System.Collections.IEnumerable" /> aus. Iterationen können parallel ablaufen.</summary>
<returns>Eine Struktur, die Informationen darüber enthält, welcher Abschnitt der Schleife abgeschlossen ist.</returns>
<param name="source">Eine auflistbare Datenquelle.</param>
<param name="body">Der Delegat, der einmal pro Iteration aufgerufen wird.</param>
<typeparam name="TSource">Der Typ der Daten in der Quelle.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary>Führt einen foreach-Vorgang (For Each in Visual Basic) mit einem <see cref="T:System.Collections.IEnumerable" /> aus. Iterationen können parallel ablaufen. Der Schleifenstatus kann beobachtet und manipuliert werden.</summary>
<returns>Eine Struktur, die Informationen darüber enthält, welcher Abschnitt der Schleife abgeschlossen ist.</returns>
<param name="source">Eine auflistbare Datenquelle.</param>
<param name="body">Der Delegat, der einmal pro Iteration aufgerufen wird.</param>
<typeparam name="TSource">Der Typ der Daten in der Quelle.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary>Führt einen foreach-Vorgang (For Each in Visual Basic) mit 64-Bit-Indizes für einen <see cref="T:System.Collections.IEnumerable" /> aus. Iterationen können parallel ausgeführt werden. Der Schleifenzustand kann beobachtet und manipuliert werden.</summary>
<returns>Eine Struktur, die Informationen darüber enthält, welcher Abschnitt der Schleife abgeschlossen ist.</returns>
<param name="source">Eine auflistbare Datenquelle.</param>
<param name="body">Der Delegat, der einmal pro Iteration aufgerufen wird.</param>
<typeparam name="TSource">Der Typ der Daten in der Quelle.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>Führt einen foreach-Vorgang (For Each in Visual Basic) mit threadlokalen Daten für einen <see cref="T:System.Collections.IEnumerable" /> aus. Iterationen können parallel ablaufen. Der Schleifenstatus kann beobachtet und manipuliert werden.</summary>
<returns>Eine Struktur, die Informationen darüber enthält, welcher Abschnitt der Schleife abgeschlossen ist.</returns>
<param name="source">Eine auflistbare Datenquelle.</param>
<param name="localInit">Der Funktionsdelegat, der den ursprünglichen Zustand der lokalen Daten für jede Aufgabe zurückgibt.</param>
<param name="body">Der Delegat, der einmal pro Iteration aufgerufen wird.</param>
<param name="localFinally">Der Delegat, der die endgültige Aktion beim lokalen Status jeder Aufgabe ausführt.</param>
<typeparam name="TSource">Der Typ der Daten in der Quelle.</typeparam>
<typeparam name="TLocal">Der Typ der threadlokalen Daten.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>Führt einen foreach-Vorgang (For Each in Visual Basic) mit threadlokalen Daten für einen <see cref="T:System.Collections.IEnumerable" /> aus. Iterationen können parallel ablaufen. Der Schleifenstatus kann beobachtet und manipuliert werden.</summary>
<returns>Eine Struktur, die Informationen darüber enthält, welcher Abschnitt der Schleife abgeschlossen ist.</returns>
<param name="source">Eine auflistbare Datenquelle.</param>
<param name="localInit">Der Funktionsdelegat, der den ursprünglichen Zustand der lokalen Daten für jede Aufgabe zurückgibt.</param>
<param name="body">Der Delegat, der einmal pro Iteration aufgerufen wird.</param>
<param name="localFinally">Der Delegat, der die endgültige Aktion beim lokalen Status jeder Aufgabe ausführt.</param>
<typeparam name="TSource">Der Typ der Daten in der Quelle.</typeparam>
<typeparam name="TLocal">Der Typ der threadlokalen Daten.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0})">
<summary>Führt einen foreach-Vorgang (For Each in Visual Basic) für ein <see cref="T:System.Collections.IEnumerable" />-Objekt aus. Iterationen können parallel ablaufen. Schleifenoptionen sind konfigurierbar.</summary>
<returns>Eine Struktur, die Informationen darüber enthält, welcher Abschnitt der Schleife abgeschlossen ist.</returns>
<param name="source">Eine auflistbare Datenquelle.</param>
<param name="parallelOptions">Ein Objekt, das das Verhalten dieses Vorgangs konfiguriert.</param>
<param name="body">Der Delegat, der einmal pro Iteration aufgerufen wird.</param>
<typeparam name="TSource">Der Typ der Daten in der Quelle.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary>Führt einen foreach-Vorgang (For Each in Visual Basic) für ein <see cref="T:System.Collections.IEnumerable" />-Objekt aus. Iterationen können parallel ablaufen. Schleifenoptionen sind konfigurierbar. Der Schleifenstatus kann beobachtet und manipuliert werden.</summary>
<returns>Eine Struktur, die Informationen darüber enthält, welcher Abschnitt der Schleife abgeschlossen ist.</returns>
<param name="source">Eine auflistbare Datenquelle.</param>
<param name="parallelOptions">Ein Objekt, das das Verhalten dieses Vorgangs konfiguriert.</param>
<param name="body">Der Delegat, der einmal pro Iteration aufgerufen wird.</param>
<typeparam name="TSource">Der Typ der Daten in der Quelle.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary>Führt einen foreach-Vorgang (For Each in Visual Basic) mit 64-Bit-Indizes für einen <see cref="T:System.Collections.IEnumerable" /> aus. Iterationen können parallel ablaufen. Schleifenoptionen sind konfigurierbar. Der Schleifenstatus kann beobachtet und manipuliert werden.</summary>
<returns>Eine Struktur, die Informationen darüber enthält, welcher Abschnitt der Schleife abgeschlossen ist.</returns>
<param name="source">Eine auflistbare Datenquelle.</param>
<param name="parallelOptions">Ein Objekt, das das Verhalten dieses Vorgangs konfiguriert.</param>
<param name="body">Der Delegat, der einmal pro Iteration aufgerufen wird.</param>
<typeparam name="TSource">Der Typ der Daten in der Quelle.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>Führt einen foreach-Vorgang (For Each in Visual Basic) mit threadlokalen Daten für einen <see cref="T:System.Collections.IEnumerable" /> aus. Iterationen können parallel ablaufen. Schleifenoptionen sind konfigurierbar. Der Schleifenstatus kann beobachtet und manipuliert werden.</summary>
<returns>Eine Struktur, die Informationen darüber enthält, welcher Abschnitt der Schleife abgeschlossen ist.</returns>
<param name="source">Eine auflistbare Datenquelle.</param>
<param name="parallelOptions">Ein Objekt, das das Verhalten dieses Vorgangs konfiguriert.</param>
<param name="localInit">Der Funktionsdelegat, der den ursprünglichen Zustand der lokalen Daten für jede Aufgabe zurückgibt.</param>
<param name="body">Der Delegat, der einmal pro Iteration aufgerufen wird.</param>
<param name="localFinally">Der Delegat, der die endgültige Aktion beim lokalen Status jeder Aufgabe ausführt.</param>
<typeparam name="TSource">Der Typ der Daten in der Quelle.</typeparam>
<typeparam name="TLocal">Der Typ der threadlokalen Daten.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>Führt einen foreach-Vorgang (For Each in Visual Basic) mit threadlokalen Daten und 64-Bit-Indizes für einen <see cref="T:System.Collections.IEnumerable" /> aus. Iterationen können parallel ablaufen. Schleifenoptionen sind konfigurierbar. Der Schleifenstatus kann beobachtet und manipuliert werden.</summary>
<returns>Eine Struktur, die Informationen darüber enthält, welcher Abschnitt der Schleife abgeschlossen ist.</returns>
<param name="source">Eine auflistbare Datenquelle.</param>
<param name="parallelOptions">Ein Objekt, das das Verhalten dieses Vorgangs konfiguriert.</param>
<param name="localInit">Der Funktionsdelegat, der den ursprünglichen Zustand der lokalen Daten für jede Aufgabe zurückgibt.</param>
<param name="body">Der Delegat, der einmal pro Iteration aufgerufen wird.</param>
<param name="localFinally">Der Delegat, der die endgültige Aktion beim lokalen Status jeder Aufgabe ausführt.</param>
<typeparam name="TSource">Der Typ der Daten in der Quelle.</typeparam>
<typeparam name="TLocal">Der Typ der threadlokalen Daten.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.Invoke(System.Action[])">
<summary>Führt jede der bereitgestellten Aktionen aus (möglicherweise parallel).</summary>
<param name="actions">Ein Array auszuführender <see cref="T:System.Action" />.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="actions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that is thrown when any action in the <paramref name="actions" /> array throws an exception.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="actions" /> array contains a null element.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.Invoke(System.Threading.Tasks.ParallelOptions,System.Action[])">
<summary>Führt die einzelnen bereitgestellten Aktionen (nach Möglichkeit parallel) aus, es sei denn, der Vorgang wird vom Benutzer abgebrochen.</summary>
<param name="parallelOptions">Ein Objekt, das das Verhalten dieses Vorgangs konfiguriert.</param>
<param name="actions">Ein Array auszuführender Aktionen.</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> is set.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="actions" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that is thrown when any action in the <paramref name="actions" /> array throws an exception.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="actions" /> array contains a null element.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="T:System.Threading.Tasks.ParallelLoopResult">
<summary>Gibt den Status der Ausführung einer <see cref="T:System.Threading.Tasks.Parallel" />-Schleife an.</summary>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopResult.IsCompleted">
<summary>Ruft ab, ob die Schleife bis zum Abschluss ausgeführt wurde, das heißt, dass alle Iterationen der Schleife ausgeführt wurden und keine Anforderung eines vorzeitigen Abbruchs an die Schleife gesendet wurde.</summary>
<returns>True, wenn die Schleife zum Abschluss ausgeführt wurde, andernfalls false.</returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopResult.LowestBreakIteration">
<summary>Ruft den Indes der niedrigsten Iteration ab, von der <see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> aufgerufen wurde.</summary>
<returns>Gibt eine ganze Zahl zurück, die die niedrigste Iteration darstellt, aus der die Break-Anweisung aufgerufen wurde.</returns>
</member>
<member name="T:System.Threading.Tasks.ParallelLoopState">
<summary>Ermöglicht Iterationen von parallelen Schleifen die Interaktion mit anderen Iterationen.Eine Instanz dieser Klasse wird von der <see cref="T:System.Threading.Tasks.Parallel" />-Klasse für jede Schleife bereitgestellt. Sie können keine Instanzen im Code erstellen.</summary>
</member>
<member name="M:System.Threading.Tasks.ParallelLoopState.Break">
<summary>Gibt an, dass die <see cref="T:System.Threading.Tasks.Parallel" />-Schleife die Ausführung von Iterationen nach der aktuellen Iteration beenden soll, sobald dies dem System möglich ist. </summary>
<exception cref="T:System.InvalidOperationException">Die <see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" />-Methode wurde bereits zuvor aufgerufen.<see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> und <see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" /> können von Iterationen derselben Schleife nicht in Kombination verwendet werden.</exception>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.IsExceptional">
<summary>Ruft einen Wert ab, der angibt, ob eine Iteration der Schleife eine Ausnahme ausgelöst hat, die nicht durch diese Iteration behandelt wurde. </summary>
<returns>true, wenn eine nicht behandelte Ausnahme ausgelöst wurde, andernfalls false. </returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.IsStopped">
<summary>Ruft einen Wert ab, der angibt, ob eine Iteration der Schleife die <see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" />-Methode aufgerufen hat. </summary>
<returns>true, wenn die Schleife beendet wurde, indem in einer Iteration die <see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" />-Methode aufgerufen wurde, andernfalls false. </returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.LowestBreakIteration">
<summary>Ruft die niedrigste Iteration der Schleife ab, aus der <see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> aufgerufen wurde. </summary>
<returns>Die niedrigste Iteration, aus der <see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> aufgerufen wurde.Bei einer <see cref="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Action{``0})" />-Schleife basiert der Wert auf einem intern generierten Index.</returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.ShouldExitCurrentIteration">
<summary>Ruft einen Wert ab, der angibt, ob die aktuelle Iteration der Schleife basierend auf Anforderungen dieser oder anderer Iterationen beendet werden soll.</summary>
<returns>true, wenn die aktuelle Iteration beendet werden soll, andernfalls false. </returns>
</member>
<member name="M:System.Threading.Tasks.ParallelLoopState.Stop">
<summary>Gibt an, dass die <see cref="T:System.Threading.Tasks.Parallel" />-Schleife die Ausführung beenden soll, sobald dies dem System möglich ist.</summary>
<exception cref="T:System.InvalidOperationException">Die <see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> -Methode wurde bereits aufgerufen.<see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> und <see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" /> können von Iterationen derselben Schleife nicht in Kombination verwendet werden.</exception>
</member>
<member name="T:System.Threading.Tasks.ParallelOptions">
<summary>Speichert Optionen, die die Ausführung von Methoden für die <see cref="T:System.Threading.Tasks.Parallel" />-Klasse konfigurieren.</summary>
</member>
<member name="M:System.Threading.Tasks.ParallelOptions.#ctor">
<summary>Initialisiert eine neue Instanz der <see cref="T:System.Threading.Tasks.ParallelOptions" />-Klasse.</summary>
</member>
<member name="P:System.Threading.Tasks.ParallelOptions.CancellationToken">
<summary>Ruft das <see cref="T:System.Threading.CancellationToken" /> ab, das dieser <see cref="T:System.Threading.Tasks.ParallelOptions" />-Instanz zugeordnet ist, oder legt dieses fest.</summary>
<returns>Das Token, das dieser Instanz zugeordnet ist.</returns>
</member>
<member name="P:System.Threading.Tasks.ParallelOptions.MaxDegreeOfParallelism">
<summary>Ruft die maximale Anzahl der gleichzeitigen Aufgaben fest, die von dieser Instanz <see cref="T:System.Threading.Tasks.ParallelOptions" /> aktiviert werden.</summary>
<returns>Eine ganze Zahl, die den maximalen Parallelitätsgrad darstellt.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">Die Eigenschaft wird von null oder auf einen Wert festgelegt, der kleiner als -1 ist.</exception>
</member>
<member name="P:System.Threading.Tasks.ParallelOptions.TaskScheduler">
<summary>Ruft das <see cref="T:System.Threading.Tasks.TaskScheduler" /> ab, das dieser <see cref="T:System.Threading.Tasks.ParallelOptions" />-Instanz zugeordnet ist, oder legt dieses fest.Durch Festlegen dieser Eigenschaft auf NULL wird angegeben, dass der aktuelle Taskplaner verwendet werden soll.</summary>
<returns>Der Taskplaner, der dieser Instanz zugeordnet ist.</returns>
</member>
</members>
</doc>

View File

@@ -0,0 +1,461 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Threading.Tasks.Parallel</name>
</assembly>
<members>
<member name="T:System.Threading.Tasks.Parallel">
<summary>Proporciona compatibilidad con regiones y bucles paralelos.</summary>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Action{System.Int32})">
<summary>Ejecuta un bucle for (For en Visual Basic) en el que es posible ejecutar iteraciones en paralelo.</summary>
<returns>Estructura que contiene información sobre qué parte del bucle se completó.</returns>
<param name="fromInclusive">Índice inicial, inclusivo.</param>
<param name="toExclusive">Índice final, exclusivo.</param>
<param name="body">Delegado que se invoca una vez por cada iteración.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Action{System.Int32,System.Threading.Tasks.ParallelLoopState})">
<summary>Ejecuta un bucle for (For en Visual Basic) donde se pueden ejecutar iteraciones en paralelo y el estado del bucle se puede supervisar y manipular. </summary>
<returns>Estructura que contiene información sobre qué parte del bucle se completó.</returns>
<param name="fromInclusive">Índice inicial, inclusivo.</param>
<param name="toExclusive">Índice final, exclusivo.</param>
<param name="body">Delegado que se invoca una vez por cada iteración.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int32,System.Int32,System.Func{``0},System.Func{System.Int32,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>Ejecuta un bucle for (For en Visual Basic) con datos locales del subproceso en el que es posible ejecutar iteraciones en paralelo y el estado del bucle se puede supervisar y manipular.</summary>
<returns>Estructura que contiene información sobre qué parte del bucle se completó.</returns>
<param name="fromInclusive">Índice inicial, inclusivo.</param>
<param name="toExclusive">Índice final, exclusivo.</param>
<param name="localInit">Delegado de función que devuelve el estado inicial de los datos locales de cada tarea.</param>
<param name="body">Delegado que se invoca una vez por cada iteración.</param>
<param name="localFinally">Delegado que realiza una acción final en el estado local de cada tarea.</param>
<typeparam name="TLocal">Tipo de los datos locales de subprocesos.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Threading.Tasks.ParallelOptions,System.Action{System.Int32})">
<summary>Ejecuta un bucle for (For en Visual Basic) en el que se pueden ejecutar iteraciones en paralelo y configurar las opciones de bucle.</summary>
<returns>Estructura que contiene información sobre qué parte del bucle se completó.</returns>
<param name="fromInclusive">Índice inicial, inclusivo.</param>
<param name="toExclusive">Índice final, exclusivo.</param>
<param name="parallelOptions">Objeto que configura el comportamiento de esta operación.</param>
<param name="body">Delegado que se invoca una vez por cada iteración.</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Threading.Tasks.ParallelOptions,System.Action{System.Int32,System.Threading.Tasks.ParallelLoopState})">
<summary>Ejecuta un bucle for (For en Visual Basic) donde se pueden ejecutar iteraciones en paralelo y configurar opciones de bucle y el estado del bucle se puede supervisar y manipular.</summary>
<returns>Estructura que contiene información sobre qué parte del bucle se completó.</returns>
<param name="fromInclusive">Índice inicial, inclusivo.</param>
<param name="toExclusive">Índice final, exclusivo.</param>
<param name="parallelOptions">Objeto que configura el comportamiento de esta operación.</param>
<param name="body">Delegado que se invoca una vez por cada iteración.</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int32,System.Int32,System.Threading.Tasks.ParallelOptions,System.Func{``0},System.Func{System.Int32,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>Ejecuta un bucle for (For en Visual Basic) con datos locales del subproceso en el que es posible ejecutar iteraciones en paralelo, se pueden configurar opciones de bucle y el estado del bucle se puede supervisar y manipular.</summary>
<returns>Estructura que contiene información sobre qué parte del bucle se completó.</returns>
<param name="fromInclusive">Índice inicial, inclusivo.</param>
<param name="toExclusive">Índice final, exclusivo.</param>
<param name="parallelOptions">Objeto que configura el comportamiento de esta operación.</param>
<param name="localInit">Delegado de función que devuelve el estado inicial de los datos locales de cada tarea.</param>
<param name="body">Delegado que se invoca una vez por cada iteración.</param>
<param name="localFinally">Delegado que realiza una acción final en el estado local de cada tarea.</param>
<typeparam name="TLocal">Tipo de los datos locales de subprocesos.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Action{System.Int64})">
<summary>Ejecuta un bucle for (For en Visual Basic) con índices 64 bits en el que se pueden ejecutar iteraciones en paralelo.</summary>
<returns>Estructura que contiene información sobre qué parte del bucle se completó.</returns>
<param name="fromInclusive">Índice inicial, inclusivo.</param>
<param name="toExclusive">Índice final, exclusivo.</param>
<param name="body">Delegado que se invoca una vez por cada iteración.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Action{System.Int64,System.Threading.Tasks.ParallelLoopState})">
<summary>Ejecuta un bucle for (For en Visual Basic) con índices de 64 bits en el que es posible ejecutar iteraciones en paralelo, y el estado del bucle se puede supervisar y manipular.</summary>
<returns>Estructura <see cref="T:System.Threading.Tasks.ParallelLoopResult" /> que contiene información sobre la parte completada del bucle.</returns>
<param name="fromInclusive">Índice inicial, inclusivo.</param>
<param name="toExclusive">Índice final, exclusivo.</param>
<param name="body">Delegado que se invoca una vez por cada iteración.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int64,System.Int64,System.Func{``0},System.Func{System.Int64,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>Ejecuta un bucle for (For en Visual Basic) con índices de 64 bits y datos locales del subproceso en el que es posible ejecutar iteraciones en paralelo y el estado del bucle se puede supervisar y manipular.</summary>
<returns>Estructura que contiene información sobre qué parte del bucle se completó.</returns>
<param name="fromInclusive">Índice inicial, inclusivo.</param>
<param name="toExclusive">Índice final, exclusivo.</param>
<param name="localInit">Delegado de función que devuelve el estado inicial de los datos locales de cada tarea.</param>
<param name="body">Delegado que se invoca una vez por cada iteración.</param>
<param name="localFinally">Delegado que realiza una acción final en el estado local de cada tarea.</param>
<typeparam name="TLocal">Tipo de los datos locales de subprocesos.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Threading.Tasks.ParallelOptions,System.Action{System.Int64})">
<summary>Ejecuta un bucle for (For en Visual Basic) con índices de 64 bits en el que se pueden ejecutar iteraciones en paralelo y configurar opciones de bucle.</summary>
<returns>Estructura que contiene información sobre qué parte del bucle se completó.</returns>
<param name="fromInclusive">Índice inicial, inclusivo.</param>
<param name="toExclusive">Índice final, exclusivo.</param>
<param name="parallelOptions">Objeto que configura el comportamiento de esta operación.</param>
<param name="body">Delegado que se invoca una vez por cada iteración.</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Threading.Tasks.ParallelOptions,System.Action{System.Int64,System.Threading.Tasks.ParallelLoopState})">
<summary>Ejecuta un bucle for (For en Visual Basic) con índices de 64 bits en el que es posible ejecutar iteraciones en paralelo y configurar opciones de bucle y el estado del bucle se puede supervisar y manipular.</summary>
<returns>Estructura que contiene información sobre qué parte del bucle se completó.</returns>
<param name="fromInclusive">Índice inicial, inclusivo.</param>
<param name="toExclusive">Índice final, exclusivo.</param>
<param name="parallelOptions">Objeto que configura el comportamiento de esta operación.</param>
<param name="body">Delegado que se invoca una vez por cada iteración.</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int64,System.Int64,System.Threading.Tasks.ParallelOptions,System.Func{``0},System.Func{System.Int64,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>Ejecuta un bucle for (For en Visual Basic) con índices de 64 bits y datos locales del subproceso en el que es posible ejecutar iteraciones en paralelo, se pueden configurar opciones de bucle y el estado del bucle se puede supervisar y manipular.</summary>
<returns>Estructura que contiene información sobre qué parte del bucle se completó.</returns>
<param name="fromInclusive">Índice inicial, inclusivo.</param>
<param name="toExclusive">Índice final, exclusivo.</param>
<param name="parallelOptions">Objeto que configura el comportamiento de esta operación.</param>
<param name="localInit">Delegado de función que devuelve el estado inicial de los datos locales de cada subproceso.</param>
<param name="body">Delegado que se invoca una vez por cada iteración.</param>
<param name="localFinally">Delegado que realiza una acción final en el estado local de cada subproceso.</param>
<typeparam name="TLocal">Tipo de los datos locales de subprocesos.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.OrderablePartitioner{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary>Ejecuta una operación foreach (For Each en Visual Basic) en <see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" /> donde se pueden ejecutar iteraciones en paralelo, y el estado del bucle se puede supervisar y manipular.</summary>
<returns>Estructura que contiene información sobre qué parte del bucle se completó.</returns>
<param name="source">Particionador ordenable que contiene el origen de datos original.</param>
<param name="body">Delegado que se invoca una vez por cada iteración.</param>
<typeparam name="TSource">Tipo de los elementos de <paramref name="source" />.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> orderable partitioner returns false.-or-The <see cref="P:System.Collections.Concurrent.OrderablePartitioner`1.KeysNormalized" /> property in the source orderable partitioner returns false.-or-Any methods in the source orderable partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.OrderablePartitioner{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>Ejecuta una operación foreach (For Each en Visual Basic) con datos locales del subproceso en <see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" /> donde se pueden ejecutar iteraciones en paralelo y configurar opciones de bucle, y el estado del bucle se puede supervisar y manipular.</summary>
<returns>Estructura que contiene información sobre qué parte del bucle se completó.</returns>
<param name="source">Particionador ordenable que contiene el origen de datos original.</param>
<param name="localInit">Delegado de función que devuelve el estado inicial de los datos locales de cada tarea.</param>
<param name="body">Delegado que se invoca una vez por cada iteración.</param>
<param name="localFinally">Delegado que realiza una acción final en el estado local de cada tarea.</param>
<typeparam name="TSource">Tipo de los elementos de <paramref name="source" />.</typeparam>
<typeparam name="TLocal">Tipo de los datos locales de subprocesos.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.OrderablePartitioner{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary>Ejecuta una operación foreach (For Each en Visual Basic) en <see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" /> donde se pueden ejecutar iteraciones en paralelo y configurar opciones de bucle, y el estado del bucle se puede supervisar y manipular.</summary>
<returns>Estructura que contiene información sobre qué parte del bucle se completó.</returns>
<param name="source">Particionador ordenable que contiene el origen de datos original.</param>
<param name="parallelOptions">Objeto que configura el comportamiento de esta operación.</param>
<param name="body">Delegado que se invoca una vez por cada iteración.</param>
<typeparam name="TSource">Tipo de los elementos de <paramref name="source" />.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> orderable partitioner returns false.-or-The <see cref="P:System.Collections.Concurrent.OrderablePartitioner`1.KeysNormalized" /> property in the <paramref name="source" /> orderable partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> orderable partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.OrderablePartitioner{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>Ejecuta una operación foreach (For Each en Visual Basic) con índices de 64 bits y datos locales del subproceso en <see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" /> donde se pueden ejecutar iteraciones en paralelo y configurar opciones de bucle, y el estado del bucle se puede supervisar y manipular.</summary>
<returns>Estructura que contiene información sobre qué parte del bucle se completó.</returns>
<param name="source">Particionador ordenable que contiene el origen de datos original.</param>
<param name="parallelOptions">Objeto que configura el comportamiento de esta operación.</param>
<param name="localInit">Delegado de función que devuelve el estado inicial de los datos locales de cada tarea.</param>
<param name="body">Delegado que se invoca una vez por cada iteración.</param>
<param name="localFinally">Delegado que realiza una acción final en el estado local de cada tarea.</param>
<typeparam name="TSource">Tipo de los elementos de <paramref name="source" />.</typeparam>
<typeparam name="TLocal">Tipo de los datos locales de subprocesos.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> or <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Action{``0})">
<summary>Ejecuta una operación foreach (For Each en Visual Basic) en <see cref="T:System.Collections.Concurrent.Partitioner" />, en la que es posible ejecutar iteraciones en paralelo.</summary>
<returns>Estructura que contiene información sobre qué parte del bucle se completó.</returns>
<param name="source">Particionador que contiene el origen de datos original.</param>
<param name="body">Delegado que se invoca una vez por cada iteración.</param>
<typeparam name="TSource">Tipo de los elementos de <paramref name="source" />.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> partitioner return null.-or-The <see cref="M:System.Collections.Concurrent.Partitioner`1.GetPartitions(System.Int32)" /> method in the <paramref name="source" /> partitioner does not return the correct number of partitions.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary>Ejecuta una operación foreach (For Each en Visual Basic) en <see cref="T:System.Collections.Concurrent.Partitioner" /> donde se pueden ejecutar iteraciones en paralelo, y el estado del bucle se puede supervisar y manipular.</summary>
<returns>Estructura que contiene información sobre qué parte del bucle se completó.</returns>
<param name="source">Particionador que contiene el origen de datos original.</param>
<param name="body">Delegado que se invoca una vez por cada iteración.</param>
<typeparam name="TSource">Tipo de los elementos de <paramref name="source" />.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-A method in the <paramref name="source" /> partitioner returns null.-or-The <see cref="M:System.Collections.Concurrent.Partitioner`1.GetPartitions(System.Int32)" /> method in the <paramref name="source" /> partitioner does not return the correct number of partitions.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.Partitioner{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>Ejecuta una operación foreach (For Each en Visual Basic) con datos locales del subproceso en <see cref="T:System.Collections.Concurrent.Partitioner" /> donde se pueden ejecutar iteraciones en paralelo, y el estado del bucle se puede supervisar y manipular.</summary>
<returns>Estructura que contiene información sobre qué parte del bucle se completó.</returns>
<param name="source">Particionador que contiene el origen de datos original.</param>
<param name="localInit">Delegado de función que devuelve el estado inicial de los datos locales de cada tarea.</param>
<param name="body">Delegado que se invoca una vez por cada iteración.</param>
<param name="localFinally">Delegado que realiza una acción final en el estado local de cada tarea.</param>
<typeparam name="TSource">Tipo de los elementos de <paramref name="source" />.</typeparam>
<typeparam name="TLocal">Tipo de los datos locales de subprocesos.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0})">
<summary>Ejecuta una operación foreach (For Each en Visual Basic) en <see cref="T:System.Collections.Concurrent.Partitioner" /> donde se pueden ejecutar iteraciones en paralelo y configurar las opciones de bucle.</summary>
<returns>Estructura que contiene información sobre qué parte del bucle se completó.</returns>
<param name="source">Particionador que contiene el origen de datos original.</param>
<param name="parallelOptions">Objeto que configura el comportamiento de esta operación.</param>
<param name="body">Delegado que se invoca una vez por cada iteración.</param>
<typeparam name="TSource">Tipo de los elementos de <paramref name="source" />.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary>Ejecuta una operación foreach (For Each en Visual Basic) en <see cref="T:System.Collections.Concurrent.Partitioner" /> donde se pueden ejecutar iteraciones en paralelo y configurar opciones de bucle, y el estado del bucle se puede supervisar y manipular.</summary>
<returns>Estructura que contiene información sobre qué parte del bucle se completó.</returns>
<param name="source">Particionador que contiene el origen de datos original.</param>
<param name="parallelOptions">Objeto que configura el comportamiento de esta operación.</param>
<param name="body">Delegado que se invoca una vez por cada iteración.</param>
<typeparam name="TSource">Tipo de los elementos de <paramref name="source" />.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.Partitioner{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>Ejecuta una operación foreach (For Each en Visual Basic) con datos locales del subproceso en <see cref="T:System.Collections.Concurrent.Partitioner" /> donde se pueden ejecutar iteraciones en paralelo y configurar opciones de bucle, y el estado del bucle se puede supervisar y manipular.</summary>
<returns>Estructura que contiene información sobre qué parte del bucle se completó.</returns>
<param name="source">Particionador que contiene el origen de datos original.</param>
<param name="parallelOptions">Objeto que configura el comportamiento de esta operación.</param>
<param name="localInit">Delegado de función que devuelve el estado inicial de los datos locales de cada tarea.</param>
<param name="body">Delegado que se invoca una vez por cada iteración.</param>
<param name="localFinally">Delegado que realiza una acción final en el estado local de cada tarea.</param>
<typeparam name="TSource">Tipo de los elementos de <paramref name="source" />.</typeparam>
<typeparam name="TLocal">Tipo de los datos locales de subprocesos.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0})">
<summary>Ejecuta una operación foreach (For Each en Visual Basic) en <see cref="T:System.Collections.IEnumerable" />, en la que es posible ejecutar iteraciones en paralelo.</summary>
<returns>Estructura que contiene información sobre qué parte del bucle se completó.</returns>
<param name="source">Origen de datos enumerable.</param>
<param name="body">Delegado que se invoca una vez por cada iteración.</param>
<typeparam name="TSource">Tipo de los datos del origen.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary>Ejecuta una operación foreach (For Each en Visual Basic) en <see cref="T:System.Collections.IEnumerable" /> donde se pueden ejecutar iteraciones en paralelo, y el estado del bucle se puede supervisar y manipular.</summary>
<returns>Estructura que contiene información sobre qué parte del bucle se completó.</returns>
<param name="source">Origen de datos enumerable.</param>
<param name="body">Delegado que se invoca una vez por cada iteración.</param>
<typeparam name="TSource">Tipo de los datos del origen.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary>Ejecuta una operación foreach (For Each en Visual Basic) con índices de 64 bits en <see cref="T:System.Collections.IEnumerable" /> donde se pueden ejecutar iteraciones en paralelo, y el estado del bucle se puede supervisar y manipular.</summary>
<returns>Estructura que contiene información sobre qué parte del bucle se completó.</returns>
<param name="source">Origen de datos enumerable.</param>
<param name="body">Delegado que se invoca una vez por cada iteración.</param>
<typeparam name="TSource">Tipo de los datos del origen.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>Ejecuta una operación foreach (For Each en Visual Basic) con datos locales del subproceso en <see cref="T:System.Collections.IEnumerable" /> donde se pueden ejecutar iteraciones en paralelo, y el estado del bucle se puede supervisar y manipular.</summary>
<returns>Estructura que contiene información sobre qué parte del bucle se completó.</returns>
<param name="source">Origen de datos enumerable.</param>
<param name="localInit">Delegado de función que devuelve el estado inicial de los datos locales de cada tarea.</param>
<param name="body">Delegado que se invoca una vez por cada iteración.</param>
<param name="localFinally">Delegado que realiza una acción final en el estado local de cada tarea.</param>
<typeparam name="TSource">Tipo de los datos del origen.</typeparam>
<typeparam name="TLocal">Tipo de los datos locales de subprocesos.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>Ejecuta una operación foreach (For Each en Visual Basic) con datos locales del subproceso en <see cref="T:System.Collections.IEnumerable" /> donde se pueden ejecutar iteraciones en paralelo, y el estado del bucle se puede supervisar y manipular.</summary>
<returns>Estructura que contiene información sobre qué parte del bucle se completó.</returns>
<param name="source">Origen de datos enumerable.</param>
<param name="localInit">Delegado de función que devuelve el estado inicial de los datos locales de cada tarea.</param>
<param name="body">Delegado que se invoca una vez por cada iteración.</param>
<param name="localFinally">Delegado que realiza una acción final en el estado local de cada tarea.</param>
<typeparam name="TSource">Tipo de los datos del origen.</typeparam>
<typeparam name="TLocal">Tipo de los datos locales de subprocesos.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0})">
<summary>Ejecuta una operación foreach (For Each en Visual Basic) en <see cref="T:System.Collections.IEnumerable" /> donde se pueden ejecutar iteraciones en paralelo y configurar las opciones de bucle.</summary>
<returns>Estructura que contiene información sobre qué parte del bucle se completó.</returns>
<param name="source">Origen de datos enumerable.</param>
<param name="parallelOptions">Objeto que configura el comportamiento de esta operación.</param>
<param name="body">Delegado que se invoca una vez por cada iteración.</param>
<typeparam name="TSource">Tipo de los datos del origen.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary>Ejecuta una operación foreach (For Each en Visual Basic) en <see cref="T:System.Collections.IEnumerable" /> donde se pueden ejecutar iteraciones en paralelo y configurar opciones de bucle, y el estado del bucle se puede supervisar y manipular.</summary>
<returns>Estructura que contiene información sobre qué parte del bucle se completó.</returns>
<param name="source">Origen de datos enumerable.</param>
<param name="parallelOptions">Objeto que configura el comportamiento de esta operación.</param>
<param name="body">Delegado que se invoca una vez por cada iteración.</param>
<typeparam name="TSource">Tipo de los datos del origen.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary>Ejecuta una operación foreach (For Each in Visual Basic) con índices de 64 bits en <see cref="T:System.Collections.IEnumerable" /> donde se pueden ejecutar iteraciones en paralelo y configurar opciones de bucle, y el estado del bucle se puede supervisar y manipular.</summary>
<returns>Estructura que contiene información sobre qué parte del bucle se completó.</returns>
<param name="source">Origen de datos enumerable.</param>
<param name="parallelOptions">Objeto que configura el comportamiento de esta operación.</param>
<param name="body">Delegado que se invoca una vez por cada iteración.</param>
<typeparam name="TSource">Tipo de los datos del origen.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>Ejecuta una operación foreach (For Each en Visual Basic) con datos locales del subproceso en <see cref="T:System.Collections.IEnumerable" /> donde se pueden ejecutar iteraciones en paralelo y configurar opciones de bucle, y el estado del bucle se puede supervisar y manipular.</summary>
<returns>Estructura que contiene información sobre qué parte del bucle se completó.</returns>
<param name="source">Origen de datos enumerable.</param>
<param name="parallelOptions">Objeto que configura el comportamiento de esta operación.</param>
<param name="localInit">Delegado de función que devuelve el estado inicial de los datos locales de cada tarea.</param>
<param name="body">Delegado que se invoca una vez por cada iteración.</param>
<param name="localFinally">Delegado que realiza una acción final en el estado local de cada tarea.</param>
<typeparam name="TSource">Tipo de los datos del origen.</typeparam>
<typeparam name="TLocal">Tipo de los datos locales de subprocesos.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>Ejecuta una operación foreach (For Each en Visual Basic) con índices de 64 bits y datos locales del subproceso en <see cref="T:System.Collections.IEnumerable" /> donde se pueden ejecutar iteraciones en paralelo y configurar opciones de bucle, y el estado del bucle se puede supervisar y manipular.</summary>
<returns>Estructura que contiene información sobre qué parte del bucle se completó.</returns>
<param name="source">Origen de datos enumerable.</param>
<param name="parallelOptions">Objeto que configura el comportamiento de esta operación.</param>
<param name="localInit">Delegado de función que devuelve el estado inicial de los datos locales de cada tarea.</param>
<param name="body">Delegado que se invoca una vez por cada iteración.</param>
<param name="localFinally">Delegado que realiza una acción final en el estado local de cada tarea.</param>
<typeparam name="TSource">Tipo de los datos del origen.</typeparam>
<typeparam name="TLocal">Tipo de los datos locales de subprocesos.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.Invoke(System.Action[])">
<summary>Ejecuta cada una de las acciones proporcionadas, posiblemente en paralelo.</summary>
<param name="actions">Matriz de <see cref="T:System.Action" /> que se va a ejecutar.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="actions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that is thrown when any action in the <paramref name="actions" /> array throws an exception.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="actions" /> array contains a null element.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.Invoke(System.Threading.Tasks.ParallelOptions,System.Action[])">
<summary>Ejecuta todas las acciones proporcionadas, posiblemente en paralelo, a menos que el usuario cancele la operación.</summary>
<param name="parallelOptions">Objeto que configura el comportamiento de esta operación.</param>
<param name="actions">Matriz de acciones que se va a ejecutar.</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> is set.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="actions" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that is thrown when any action in the <paramref name="actions" /> array throws an exception.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="actions" /> array contains a null element.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="T:System.Threading.Tasks.ParallelLoopResult">
<summary>Proporciona el estado de realización en la ejecución de un bucle <see cref="T:System.Threading.Tasks.Parallel" />.</summary>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopResult.IsCompleted">
<summary>Obtiene un valor que indica si el bucle se ejecutó hasta completarse, como que se ejecutaron todas las iteraciones del bucle y que el bucle no recibió ninguna solicitud para finalizar prematuramente.</summary>
<returns>Es true si el bucle se ejecutó hasta completarse; de lo contrario, es false.</returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopResult.LowestBreakIteration">
<summary>Obtiene el índice de la iteración más baja desde la que se llamó a <see cref="M:System.Threading.Tasks.ParallelLoopState.Break" />.</summary>
<returns>Devuelve un entero que representa la iteración más baja desde la que se llamó a la instrucción Break.</returns>
</member>
<member name="T:System.Threading.Tasks.ParallelLoopState">
<summary>Habilita iteraciones de bucles paralelos para interactuar con otras iteraciones.La clase <see cref="T:System.Threading.Tasks.Parallel" /> proporciona una instancia de esta clase a cada bucle; no se pueden crear instancias en el código.</summary>
</member>
<member name="M:System.Threading.Tasks.ParallelLoopState.Break">
<summary>Comunica que el bucle <see cref="T:System.Threading.Tasks.Parallel" /> debe cesar la ejecución de iteraciones después de la iteración actual en cuanto pueda el sistema. </summary>
<exception cref="T:System.InvalidOperationException">El <see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" /> previamente se llamó el método.<see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> y <see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" /> no puede usarse en combinación por iteraciones del mismo bucle.</exception>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.IsExceptional">
<summary>Obtiene si alguna iteración del bucle causó una excepción que la iteración no controló. </summary>
<returns>true si se produjo una excepción no controlada; en caso contrario, false. </returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.IsStopped">
<summary>Obtiene si alguna iteración del bucle llamó al método <see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" />. </summary>
<returns>true si cualquier iteración detuvo el bucle llamando al método <see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" />; en caso contrario, false. </returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.LowestBreakIteration">
<summary>Obtiene la iteración más baja del bucle desde el que se llamó a <see cref="M:System.Threading.Tasks.ParallelLoopState.Break" />. </summary>
<returns>Iteración más baja desde la que se llamó a <see cref="M:System.Threading.Tasks.ParallelLoopState.Break" />.En el caso de un bucle <see cref="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Action{``0})" />, el valor está basado en un índice generado internamente.</returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.ShouldExitCurrentIteration">
<summary>Obtiene si la iteración actual del bucle debe salir basándose en las solicitudes realizadas por esta u otras iteraciones.</summary>
<returns>true si la iteración actual debería terminar; en caso contrario, false. </returns>
</member>
<member name="M:System.Threading.Tasks.ParallelLoopState.Stop">
<summary>Comunica que el bucle <see cref="T:System.Threading.Tasks.Parallel" /> debe cesar la ejecución en cuanto pueda el sistema.</summary>
<exception cref="T:System.InvalidOperationException">El <see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> previamente se llamó el método.<see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> y <see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" /> no puede usarse en combinación por iteraciones del mismo bucle.</exception>
</member>
<member name="T:System.Threading.Tasks.ParallelOptions">
<summary>Almacena las opciones que configuran el funcionamiento de los métodos en la clase <see cref="T:System.Threading.Tasks.Parallel" />.</summary>
</member>
<member name="M:System.Threading.Tasks.ParallelOptions.#ctor">
<summary>Inicializa una nueva instancia de la clase <see cref="T:System.Threading.Tasks.ParallelOptions" />.</summary>
</member>
<member name="P:System.Threading.Tasks.ParallelOptions.CancellationToken">
<summary>Obtiene o establece el <see cref="T:System.Threading.CancellationToken" /> asociado a esta instancia de <see cref="T:System.Threading.Tasks.ParallelOptions" />.</summary>
<returns>Token que está asociado a esta instancia.</returns>
</member>
<member name="P:System.Threading.Tasks.ParallelOptions.MaxDegreeOfParallelism">
<summary>Obtiene o establece el número máximo de tareas simultáneas habilitadas por esta instancia de <see cref="T:System.Threading.Tasks.ParallelOptions" /> .</summary>
<returns>Entero que representa el grado máximo de paralelismo.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">La propiedad se establece en cero o en un valor menor que -1.</exception>
</member>
<member name="P:System.Threading.Tasks.ParallelOptions.TaskScheduler">
<summary>Obtiene o establece el <see cref="T:System.Threading.Tasks.TaskScheduler" /> asociado a esta instancia de <see cref="T:System.Threading.Tasks.ParallelOptions" />.Al establecer esta propiedad en null, se indica que no debe usarse el programador actual.</summary>
<returns>Programador de tareas asociado a esta instancia.</returns>
</member>
</members>
</doc>

View File

@@ -0,0 +1,461 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Threading.Tasks.Parallel</name>
</assembly>
<members>
<member name="T:System.Threading.Tasks.Parallel">
<summary>Fournit une prise en charge pour les boucles et les régions parallèles.</summary>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Action{System.Int32})">
<summary>Exécute une boucle for (For en Visual Basic) dans laquelle des itérations peuvent s'exécuter en parallèle.</summary>
<returns>Structure qui contient des informations sur la partie de la boucle terminée.</returns>
<param name="fromInclusive">Index de début, inclus.</param>
<param name="toExclusive">Index de fin, exclusif.</param>
<param name="body">Délégué appelé une fois par itération.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Action{System.Int32,System.Threading.Tasks.ParallelLoopState})">
<summary>Exécute une boucle for (For en Visual Basic) dans laquelle les itérations peuvent s'exécuter en parallèle et l'état de la boucle peut être surveillé et manipulé. </summary>
<returns>Structure qui contient des informations sur la partie de la boucle terminée.</returns>
<param name="fromInclusive">Index de début, inclus.</param>
<param name="toExclusive">Index de fin, exclusif.</param>
<param name="body">Délégué appelé une fois par itération.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int32,System.Int32,System.Func{``0},System.Func{System.Int32,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>Exécute une boucle for (For en Visual Basic) avec des données locales de thread dans laquelle les itérations peuvent s'exécuter en parallèle et l'état de la boucle peut être surveillé et manipulé.</summary>
<returns>Structure qui contient des informations sur la partie de la boucle terminée.</returns>
<param name="fromInclusive">Index de début, inclus.</param>
<param name="toExclusive">Index de fin, exclusif.</param>
<param name="localInit">Délégué de fonction qui retourne l'état initial des données locales pour chaque tâche.</param>
<param name="body">Délégué appelé une fois par itération.</param>
<param name="localFinally">Délégué qui exécute une dernière action sur l'état local de chaque tâche.</param>
<typeparam name="TLocal">Type des données locales de thread.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Threading.Tasks.ParallelOptions,System.Action{System.Int32})">
<summary>Exécute une boucle for (For en Visual Basic) dans laquelle les itérations peuvent s'exécuter en parallèle et les options de la boucle peuvent être configurées.</summary>
<returns>Structure qui contient des informations sur la partie de la boucle terminée.</returns>
<param name="fromInclusive">Index de début, inclus.</param>
<param name="toExclusive">Index de fin, exclusif.</param>
<param name="parallelOptions">Objet qui configure le comportement de cette opération.</param>
<param name="body">Délégué appelé une fois par itération.</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Threading.Tasks.ParallelOptions,System.Action{System.Int32,System.Threading.Tasks.ParallelLoopState})">
<summary>Exécute une boucle for (For en Visual Basic) dans laquelle les itérations peuvent s'exécuter en parallèle, les options de la boucle peuvent être configurées et l'état de la boucle peut être surveillé et manipulé.</summary>
<returns>Structure qui contient des informations sur la partie de la boucle terminée.</returns>
<param name="fromInclusive">Index de début, inclus.</param>
<param name="toExclusive">Index de fin, exclusif.</param>
<param name="parallelOptions">Objet qui configure le comportement de cette opération.</param>
<param name="body">Délégué appelé une fois par itération.</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int32,System.Int32,System.Threading.Tasks.ParallelOptions,System.Func{``0},System.Func{System.Int32,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>Exécute une boucle for (For en Visual Basic) avec des données locales de thread dans laquelle les itérations peuvent s'exécuter en parallèle, les options de la boucle peuvent être configurées et l'état de la boucle peut être surveillé et manipulé.</summary>
<returns>Structure qui contient des informations sur la partie de la boucle terminée.</returns>
<param name="fromInclusive">Index de début, inclus.</param>
<param name="toExclusive">Index de fin, exclusif.</param>
<param name="parallelOptions">Objet qui configure le comportement de cette opération.</param>
<param name="localInit">Délégué de fonction qui retourne l'état initial des données locales pour chaque tâche.</param>
<param name="body">Délégué appelé une fois par itération.</param>
<param name="localFinally">Délégué qui exécute une dernière action sur l'état local de chaque tâche.</param>
<typeparam name="TLocal">Type des données locales de thread.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Action{System.Int64})">
<summary>Exécute une boucle for (For en Visual Basic) avec des index 64 bits dans laquelle les itérations peuvent s'exécuter en parallèle.</summary>
<returns>Structure qui contient des informations sur la partie de la boucle terminée.</returns>
<param name="fromInclusive">Index de début, inclus.</param>
<param name="toExclusive">Index de fin, exclusif.</param>
<param name="body">Délégué appelé une fois par itération.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Action{System.Int64,System.Threading.Tasks.ParallelLoopState})">
<summary>Exécute une boucle for (For en Visual Basic) avec des index 64 bits dans laquelle les itérations peuvent s'exécuter en parallèle et l'état de la boucle peut être surveillé et manipulé.</summary>
<returns>Structure <see cref="T:System.Threading.Tasks.ParallelLoopResult" /> qui contient des informations indiquant quelle partie de la boucle est terminée.</returns>
<param name="fromInclusive">Index de début, inclus.</param>
<param name="toExclusive">Index de fin, exclusif.</param>
<param name="body">Délégué appelé une fois par itération.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int64,System.Int64,System.Func{``0},System.Func{System.Int64,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>Exécute une boucle for (For en Visual Basic) avec des index 64 bits et des données locales de thread dans laquelle les itérations peuvent s'exécuter en parallèle et l'état de la boucle peut être surveillé et manipulé.</summary>
<returns>Structure qui contient des informations sur la partie de la boucle terminée.</returns>
<param name="fromInclusive">Index de début, inclus.</param>
<param name="toExclusive">Index de fin, exclusif.</param>
<param name="localInit">Délégué de fonction qui retourne l'état initial des données locales pour chaque tâche.</param>
<param name="body">Délégué appelé une fois par itération.</param>
<param name="localFinally">Délégué qui exécute une dernière action sur l'état local de chaque tâche.</param>
<typeparam name="TLocal">Type des données locales de thread.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Threading.Tasks.ParallelOptions,System.Action{System.Int64})">
<summary>Exécute une boucle for (For en Visual Basic) avec des index 64 bits dans laquelle les itérations peuvent s'exécuter en parallèle et les options de la boucle peuvent être configurées.</summary>
<returns>Structure qui contient des informations sur la partie de la boucle terminée.</returns>
<param name="fromInclusive">Index de début, inclus.</param>
<param name="toExclusive">Index de fin, exclusif.</param>
<param name="parallelOptions">Objet qui configure le comportement de cette opération.</param>
<param name="body">Délégué appelé une fois par itération.</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Threading.Tasks.ParallelOptions,System.Action{System.Int64,System.Threading.Tasks.ParallelLoopState})">
<summary>Exécute une boucle for (For en Visual Basic) avec des index 64 bits dans laquelle les itérations peuvent s'exécuter en parallèle, les options de la boucle peuvent être configurées et l'état de la boucle peut être surveillé et manipulé.</summary>
<returns>Structure qui contient des informations sur la partie de la boucle terminée.</returns>
<param name="fromInclusive">Index de début, inclus.</param>
<param name="toExclusive">Index de fin, exclusif.</param>
<param name="parallelOptions">Objet qui configure le comportement de cette opération.</param>
<param name="body">Délégué appelé une fois par itération.</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int64,System.Int64,System.Threading.Tasks.ParallelOptions,System.Func{``0},System.Func{System.Int64,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>Exécute une boucle for (For en Visual Basic) avec des index 64 bits et des données locales de thread dans laquelle les itérations peuvent s'exécuter en parallèle, les options de la boucle peuvent être configurées et l'état de la boucle peut être surveillé et manipulé.</summary>
<returns>Structure qui contient des informations sur la partie de la boucle terminée.</returns>
<param name="fromInclusive">Index de début, inclus.</param>
<param name="toExclusive">Index de fin, exclusif.</param>
<param name="parallelOptions">Objet qui configure le comportement de cette opération.</param>
<param name="localInit">Délégué de fonction qui retourne l'état initial des données locales pour chaque thread.</param>
<param name="body">Délégué appelé une fois par itération.</param>
<param name="localFinally">Délégué qui exécute une dernière action sur l'état local de chaque thread.</param>
<typeparam name="TLocal">Type des données locales de thread.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.OrderablePartitioner{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary>Exécute une opération foreach (For Each en Visual Basic) sur <see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" /> dans laquelle les itérations peuvent s'exécuter en parallèle et l'état de la boucle peut être surveillé et manipulé.</summary>
<returns>Structure qui contient des informations sur la partie de la boucle terminée.</returns>
<param name="source">Partitionneur classable qui contient la source de données d'origine.</param>
<param name="body">Délégué appelé une fois par itération.</param>
<typeparam name="TSource">Type des éléments dans <paramref name="source" />.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> orderable partitioner returns false.-or-The <see cref="P:System.Collections.Concurrent.OrderablePartitioner`1.KeysNormalized" /> property in the source orderable partitioner returns false.-or-Any methods in the source orderable partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.OrderablePartitioner{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>Exécute une opération foreach (For Each en Visual Basic) avec des données locales de thread sur <see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" /> dans laquelle les itérations peuvent s'exécuter en parallèle, les options de la boucle peuvent être configurées et l'état de la boucle peut être surveillé et manipulé.</summary>
<returns>Structure qui contient des informations sur la partie de la boucle terminée.</returns>
<param name="source">Partitionneur classable qui contient la source de données d'origine.</param>
<param name="localInit">Délégué de fonction qui retourne l'état initial des données locales pour chaque tâche.</param>
<param name="body">Délégué appelé une fois par itération.</param>
<param name="localFinally">Délégué qui exécute une dernière action sur l'état local de chaque tâche.</param>
<typeparam name="TSource">Type des éléments dans <paramref name="source" />.</typeparam>
<typeparam name="TLocal">Type des données locales de thread.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.OrderablePartitioner{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary>Exécute une opération foreach (For Each en Visual Basic) sur <see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" /> dans laquelle les itérations peuvent s'exécuter en parallèle, les options de la boucle peuvent être configurées et l'état de la boucle peut être surveillé et manipulé.</summary>
<returns>Structure qui contient des informations sur la partie de la boucle terminée.</returns>
<param name="source">Partitionneur classable qui contient la source de données d'origine.</param>
<param name="parallelOptions">Objet qui configure le comportement de cette opération.</param>
<param name="body">Délégué appelé une fois par itération.</param>
<typeparam name="TSource">Type des éléments dans <paramref name="source" />.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> orderable partitioner returns false.-or-The <see cref="P:System.Collections.Concurrent.OrderablePartitioner`1.KeysNormalized" /> property in the <paramref name="source" /> orderable partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> orderable partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.OrderablePartitioner{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>Exécute une opération foreach (For Each en Visual Basic) avec des index 64 bits et des données locales de thread sur <see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" /> dans laquelle les itérations peuvent s'exécuter en parallèle, les options de la boucle peuvent être configurées et l'état de la boucle peut être surveillé et manipulé.</summary>
<returns>Structure qui contient des informations sur la partie de la boucle terminée.</returns>
<param name="source">Partitionneur classable qui contient la source de données d'origine.</param>
<param name="parallelOptions">Objet qui configure le comportement de cette opération.</param>
<param name="localInit">Délégué de fonction qui retourne l'état initial des données locales pour chaque tâche.</param>
<param name="body">Délégué appelé une fois par itération.</param>
<param name="localFinally">Délégué qui exécute une dernière action sur l'état local de chaque tâche.</param>
<typeparam name="TSource">Type des éléments dans <paramref name="source" />.</typeparam>
<typeparam name="TLocal">Type des données locales de thread.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> or <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Action{``0})">
<summary>Exécute une opération foreach (For Each en Visual Basic) sur <see cref="T:System.Collections.Concurrent.Partitioner" /> dans laquelle les itérations peuvent s'exécuter en parallèle.</summary>
<returns>Structure qui contient des informations sur la partie de la boucle terminée.</returns>
<param name="source">Partitionneur qui contient la source de données d'origine.</param>
<param name="body">Délégué appelé une fois par itération.</param>
<typeparam name="TSource">Type des éléments dans <paramref name="source" />.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> partitioner return null.-or-The <see cref="M:System.Collections.Concurrent.Partitioner`1.GetPartitions(System.Int32)" /> method in the <paramref name="source" /> partitioner does not return the correct number of partitions.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary>Exécute une opération foreach (For Each en Visual Basic) sur <see cref="T:System.Collections.Concurrent.Partitioner" /> dans laquelle les itérations peuvent s'exécuter en parallèle et l'état de la boucle peut être surveillé et manipulé.</summary>
<returns>Structure qui contient des informations sur la partie de la boucle terminée.</returns>
<param name="source">Partitionneur qui contient la source de données d'origine.</param>
<param name="body">Délégué appelé une fois par itération.</param>
<typeparam name="TSource">Type des éléments dans <paramref name="source" />.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-A method in the <paramref name="source" /> partitioner returns null.-or-The <see cref="M:System.Collections.Concurrent.Partitioner`1.GetPartitions(System.Int32)" /> method in the <paramref name="source" /> partitioner does not return the correct number of partitions.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.Partitioner{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>Exécute une opération foreach (For Each en Visual Basic) avec des données locales de thread sur <see cref="T:System.Collections.Concurrent.Partitioner" /> dans laquelle les itérations peuvent s'exécuter en parallèle et l'état de la boucle peut être surveillé et manipulé.</summary>
<returns>Structure qui contient des informations sur la partie de la boucle terminée.</returns>
<param name="source">Partitionneur qui contient la source de données d'origine.</param>
<param name="localInit">Délégué de fonction qui retourne l'état initial des données locales pour chaque tâche.</param>
<param name="body">Délégué appelé une fois par itération.</param>
<param name="localFinally">Délégué qui exécute une dernière action sur l'état local de chaque tâche.</param>
<typeparam name="TSource">Type des éléments dans <paramref name="source" />.</typeparam>
<typeparam name="TLocal">Type des données locales de thread.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0})">
<summary>Exécute une opération foreach (For Each en Visual Basic) sur <see cref="T:System.Collections.Concurrent.Partitioner" /> dans laquelle les itérations peuvent s'exécuter en parallèle et les options de la boucle peuvent être configurées.</summary>
<returns>Structure qui contient des informations sur la partie de la boucle terminée.</returns>
<param name="source">Partitionneur qui contient la source de données d'origine.</param>
<param name="parallelOptions">Objet qui configure le comportement de cette opération.</param>
<param name="body">Délégué appelé une fois par itération.</param>
<typeparam name="TSource">Type des éléments dans <paramref name="source" />.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary>Exécute une opération foreach (For Each en Visual Basic) sur <see cref="T:System.Collections.Concurrent.Partitioner" /> dans laquelle les itérations peuvent s'exécuter en parallèle, les options de la boucle peuvent être configurées et l'état de la boucle peut être surveillé et manipulé.</summary>
<returns>Structure qui contient des informations sur la partie de la boucle terminée.</returns>
<param name="source">Partitionneur qui contient la source de données d'origine.</param>
<param name="parallelOptions">Objet qui configure le comportement de cette opération.</param>
<param name="body">Délégué appelé une fois par itération.</param>
<typeparam name="TSource">Type des éléments dans <paramref name="source" />.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.Partitioner{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>Exécute une opération foreach (For Each en Visual Basic) avec des données locales de thread sur <see cref="T:System.Collections.Concurrent.Partitioner" /> dans laquelle les itérations peuvent s'exécuter en parallèle, les options de la boucle peuvent être configurées et l'état de la boucle peut être surveillé et manipulé.</summary>
<returns>Structure qui contient des informations sur la partie de la boucle terminée.</returns>
<param name="source">Partitionneur qui contient la source de données d'origine.</param>
<param name="parallelOptions">Objet qui configure le comportement de cette opération.</param>
<param name="localInit">Délégué de fonction qui retourne l'état initial des données locales pour chaque tâche.</param>
<param name="body">Délégué appelé une fois par itération.</param>
<param name="localFinally">Délégué qui exécute une dernière action sur l'état local de chaque tâche.</param>
<typeparam name="TSource">Type des éléments dans <paramref name="source" />.</typeparam>
<typeparam name="TLocal">Type des données locales de thread.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0})">
<summary>Exécute une opération foreach (For Each en Visual Basic) sur <see cref="T:System.Collections.IEnumerable" /> dans laquelle les itérations peuvent s'exécuter en parallèle.</summary>
<returns>Structure qui contient des informations sur la partie de la boucle terminée.</returns>
<param name="source">Source de données énumérable.</param>
<param name="body">Délégué appelé une fois par itération.</param>
<typeparam name="TSource">Type des données contenues dans la source.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary>Exécute une opération foreach (For Each en Visual Basic) sur <see cref="T:System.Collections.IEnumerable" /> dans laquelle les itérations peuvent s'exécuter en parallèle et l'état de la boucle peut être surveillé et manipulé.</summary>
<returns>Structure qui contient des informations sur la partie de la boucle terminée.</returns>
<param name="source">Source de données énumérable.</param>
<param name="body">Délégué appelé une fois par itération.</param>
<typeparam name="TSource">Type des données contenues dans la source.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary>Exécute une opération foreach (For Each en Visual Basic) avec des index 64 bits sur <see cref="T:System.Collections.IEnumerable" /> dans laquelle les itérations peuvent s'exécuter en parallèle et l'état de la boucle peut être surveillé et manipulé.</summary>
<returns>Structure qui contient des informations sur la partie de la boucle terminée.</returns>
<param name="source">Source de données énumérable.</param>
<param name="body">Délégué appelé une fois par itération.</param>
<typeparam name="TSource">Type des données contenues dans la source.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>Exécute une opération foreach (For Each en Visual Basic) avec des données locales de thread sur <see cref="T:System.Collections.IEnumerable" /> dans laquelle les itérations peuvent s'exécuter en parallèle et l'état de la boucle peut être surveillé et manipulé.</summary>
<returns>Structure qui contient des informations sur la partie de la boucle terminée.</returns>
<param name="source">Source de données énumérable.</param>
<param name="localInit">Délégué de fonction qui retourne l'état initial des données locales pour chaque tâche.</param>
<param name="body">Délégué appelé une fois par itération.</param>
<param name="localFinally">Délégué qui exécute une dernière action sur l'état local de chaque tâche.</param>
<typeparam name="TSource">Type des données contenues dans la source.</typeparam>
<typeparam name="TLocal">Type des données locales de thread.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>Exécute une opération foreach (For Each en Visual Basic) avec des données locales de thread sur <see cref="T:System.Collections.IEnumerable" /> dans laquelle les itérations peuvent s'exécuter en parallèle et l'état de la boucle peut être surveillé et manipulé.</summary>
<returns>Structure qui contient des informations sur la partie de la boucle terminée.</returns>
<param name="source">Source de données énumérable.</param>
<param name="localInit">Délégué de fonction qui retourne l'état initial des données locales pour chaque tâche.</param>
<param name="body">Délégué appelé une fois par itération.</param>
<param name="localFinally">Délégué qui exécute une dernière action sur l'état local de chaque tâche.</param>
<typeparam name="TSource">Type des données contenues dans la source.</typeparam>
<typeparam name="TLocal">Type des données locales de thread.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0})">
<summary>Exécute une opération foreach (For Each en Visual Basic) sur <see cref="T:System.Collections.IEnumerable" /> dans laquelle les itérations peuvent s'exécuter en parallèle et les options de la boucle peuvent être configurées.</summary>
<returns>Structure qui contient des informations sur la partie de la boucle terminée.</returns>
<param name="source">Source de données énumérable.</param>
<param name="parallelOptions">Objet qui configure le comportement de cette opération.</param>
<param name="body">Délégué appelé une fois par itération.</param>
<typeparam name="TSource">Type des données contenues dans la source.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary>Exécute une opération foreach (For Each en Visual Basic) sur <see cref="T:System.Collections.IEnumerable" /> dans laquelle les itérations peuvent s'exécuter en parallèle, les options de la boucle peuvent être configurées et l'état de la boucle peut être surveillé et manipulé.</summary>
<returns>Structure qui contient des informations sur la partie de la boucle terminée.</returns>
<param name="source">Source de données énumérable.</param>
<param name="parallelOptions">Objet qui configure le comportement de cette opération.</param>
<param name="body">Délégué appelé une fois par itération.</param>
<typeparam name="TSource">Type des données contenues dans la source.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary>Exécute une opération foreach (For Each en Visual Basic) avec des index 64 bits sur <see cref="T:System.Collections.IEnumerable" /> dans laquelle les itérations peuvent s'exécuter en parallèle, les options de boucle peuvent être configurées et l'état de la boucle peut être surveillé et manipulé.</summary>
<returns>Structure qui contient des informations sur la partie de la boucle terminée.</returns>
<param name="source">Source de données énumérable.</param>
<param name="parallelOptions">Objet qui configure le comportement de cette opération.</param>
<param name="body">Délégué appelé une fois par itération.</param>
<typeparam name="TSource">Type des données contenues dans la source.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>Exécute une opération foreach (For Each en Visual Basic) avec des données locales de thread sur <see cref="T:System.Collections.IEnumerable" /> dans laquelle les itérations peuvent s'exécuter en parallèle, les options de la boucle peuvent être configurées et l'état de la boucle peut être surveillé et manipulé.</summary>
<returns>Structure qui contient des informations sur la partie de la boucle terminée.</returns>
<param name="source">Source de données énumérable.</param>
<param name="parallelOptions">Objet qui configure le comportement de cette opération.</param>
<param name="localInit">Délégué de fonction qui retourne l'état initial des données locales pour chaque tâche.</param>
<param name="body">Délégué appelé une fois par itération.</param>
<param name="localFinally">Délégué qui exécute une dernière action sur l'état local de chaque tâche.</param>
<typeparam name="TSource">Type des données contenues dans la source.</typeparam>
<typeparam name="TLocal">Type des données locales de thread.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>Exécute une opération foreach (For Each en Visual Basic) avec des données locales de thread et des index 64 bits sur <see cref="T:System.Collections.IEnumerable" /> dans laquelle les itérations peuvent s'exécuter en parallèle, les options de la boucle peuvent être configurées et l'état de la boucle peut être surveillé et manipulé.</summary>
<returns>Structure qui contient des informations sur la partie de la boucle terminée.</returns>
<param name="source">Source de données énumérable.</param>
<param name="parallelOptions">Objet qui configure le comportement de cette opération.</param>
<param name="localInit">Délégué de fonction qui retourne l'état initial des données locales pour chaque tâche.</param>
<param name="body">Délégué appelé une fois par itération.</param>
<param name="localFinally">Délégué qui exécute une dernière action sur l'état local de chaque tâche.</param>
<typeparam name="TSource">Type des données contenues dans la source.</typeparam>
<typeparam name="TLocal">Type des données locales de thread.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.Invoke(System.Action[])">
<summary>Exécute chacune des actions fournies, éventuellement en parallèle.</summary>
<param name="actions">Tableau de <see cref="T:System.Action" /> à exécuter.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="actions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that is thrown when any action in the <paramref name="actions" /> array throws an exception.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="actions" /> array contains a null element.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.Invoke(System.Threading.Tasks.ParallelOptions,System.Action[])">
<summary>Exécute chacune des actions fournies, éventuellement en parallèle, sauf si l'opération est annulée par l'utilisateur.</summary>
<param name="parallelOptions">Objet qui configure le comportement de cette opération.</param>
<param name="actions">Tableau d'actions à exécuter.</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> is set.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="actions" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that is thrown when any action in the <paramref name="actions" /> array throws an exception.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="actions" /> array contains a null element.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="T:System.Threading.Tasks.ParallelLoopResult">
<summary>Indique l'état d'achèvement de l'exécution d'une boucle <see cref="T:System.Threading.Tasks.Parallel" />.</summary>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopResult.IsCompleted">
<summary>Indique si la boucle s'est terminée et donc, si toutes les itérations de la boucle ont été exécutées et si la boucle n'a pas reçu de requête de fin prématurée.</summary>
<returns>True si la boucle s'est correctement exécutée ; sinon, false.</returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopResult.LowestBreakIteration">
<summary>Obtient l'index de l'itération la plus basse d'où <see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> a été appelé.</summary>
<returns>Retourne un entier qui représente l'itération la plus basse à partir de laquelle l'instruction Break a été appelée.</returns>
</member>
<member name="T:System.Threading.Tasks.ParallelLoopState">
<summary>Permet aux itérations de boucles parallèles d'interagir avec d'autres itérations.Une instance de cette classe est fournie par la classe <see cref="T:System.Threading.Tasks.Parallel" /> à chaque boucle ; vous ne pouvez pas créer d'instances dans votre code utilisateur.</summary>
</member>
<member name="M:System.Threading.Tasks.ParallelLoopState.Break">
<summary>Indique que l'exécution de la boucle <see cref="T:System.Threading.Tasks.Parallel" /> doit s'arrêter après l'itération actuelle dès que le système le peut. </summary>
<exception cref="T:System.InvalidOperationException">La méthode <see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" /> a été appelée au préalable.<see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> et <see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" /> ne peuvent pas être utilisés en combinaison par les itérations de la même boucle.</exception>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.IsExceptional">
<summary>Indique si une itération de la boucle a levé une exception qui n'a pas été gérée par cette itération. </summary>
<returns>true si une exception non gérée a été levée ; sinon, false. </returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.IsStopped">
<summary>Indique si une itération de la boucle a appelé la méthode <see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" />. </summary>
<returns>true si une itération a arrêté la boucle en appelant la méthode <see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" /> ; sinon, false. </returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.LowestBreakIteration">
<summary>Obtient l'itération la plus basse de la boucle d'où <see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> a été appelé. </summary>
<returns>Itération la plus basse d'où <see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> a été appelé.Dans le cas d'une boucle <see cref="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Action{``0})" />, la valeur est basée sur un index généré en interne.</returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.ShouldExitCurrentIteration">
<summary>Indique si l'itération actuelle de la boucle doit s'arrêter en fonction des requêtes effectuées par cette itération ou d'autres.</summary>
<returns>true si l'itération actuelle doit s'arrêter ; sinon, false. </returns>
</member>
<member name="M:System.Threading.Tasks.ParallelLoopState.Stop">
<summary>Indique que l'exécution de la boucle <see cref="T:System.Threading.Tasks.Parallel" /> doit s'arrêter dès que le système le peut.</summary>
<exception cref="T:System.InvalidOperationException">Le <see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> méthode a été appelée précédemment.<see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> et <see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" /> ne peuvent pas être utilisés en combinaison par les itérations de la même boucle.</exception>
</member>
<member name="T:System.Threading.Tasks.ParallelOptions">
<summary>Stocke des options qui configurent l'opération de méthodes sur la classe <see cref="T:System.Threading.Tasks.Parallel" />.</summary>
</member>
<member name="M:System.Threading.Tasks.ParallelOptions.#ctor">
<summary>Initialise une nouvelle instance de la classe <see cref="T:System.Threading.Tasks.ParallelOptions" />.</summary>
</member>
<member name="P:System.Threading.Tasks.ParallelOptions.CancellationToken">
<summary>Obtient ou définit le <see cref="T:System.Threading.CancellationToken" /> associé à cette instance <see cref="T:System.Threading.Tasks.ParallelOptions" />.</summary>
<returns>Jeton associé à cette instance.</returns>
</member>
<member name="P:System.Threading.Tasks.ParallelOptions.MaxDegreeOfParallelism">
<summary>Gets or sets the maximum number of concurrent tasks enabled by this <see cref="T:System.Threading.Tasks.ParallelOptions" /> instance.</summary>
<returns>Entier qui représente le degré maximal de parallélisme.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">The property is being set to zero or to a value that is less than -1.</exception>
</member>
<member name="P:System.Threading.Tasks.ParallelOptions.TaskScheduler">
<summary>Obtient ou définit le <see cref="T:System.Threading.Tasks.TaskScheduler" /> associé à cette instance <see cref="T:System.Threading.Tasks.ParallelOptions" />.L'affectation de la valeur null à cette propriété indique que le planificateur actuel doit être utilisé.</summary>
<returns>Planificateur de tâches associé à cette instance.</returns>
</member>
</members>
</doc>

View File

@@ -0,0 +1,461 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Threading.Tasks.Parallel</name>
</assembly>
<members>
<member name="T:System.Threading.Tasks.Parallel">
<summary>Fornisce supporto per aree e cicli in parallelo.</summary>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Action{System.Int32})">
<summary>Esegue un ciclo for (For in Visual Basic) in cui le iterazioni possono essere eseguite in parallelo.</summary>
<returns>Struttura che contiene informazioni sulla parte di ciclo completata.</returns>
<param name="fromInclusive">Indice iniziale, incluso.</param>
<param name="toExclusive">Indice finale, escluso.</param>
<param name="body">Delegato richiamato una volta per iterazione.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Action{System.Int32,System.Threading.Tasks.ParallelLoopState})">
<summary>Esegue un ciclo for (For in Visual Basic) nel quale le iterazioni possono essere eseguite in parallelo e lo stato del ciclo può essere monitorato e modificato. </summary>
<returns>Struttura che contiene informazioni sulla parte di ciclo completata.</returns>
<param name="fromInclusive">Indice iniziale, incluso.</param>
<param name="toExclusive">Indice finale, escluso.</param>
<param name="body">Delegato richiamato una volta per iterazione.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int32,System.Int32,System.Func{``0},System.Func{System.Int32,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>Esegue un ciclo for (For in Visual Basic) con dati locali del thread nel quale le iterazioni possono essere eseguite in parallelo e lo stato del ciclo può essere monitorato e modificato.</summary>
<returns>Struttura che contiene informazioni sulla parte di ciclo completata.</returns>
<param name="fromInclusive">Indice iniziale, incluso.</param>
<param name="toExclusive">Indice finale, escluso.</param>
<param name="localInit">Delegato della funzione che restituisce lo stato iniziale dei dati locali per ogni attività.</param>
<param name="body">Delegato richiamato una volta per iterazione.</param>
<param name="localFinally">Delegato che esegue un'azione finale sullo stato locale di ogni attività.</param>
<typeparam name="TLocal">Tipo dei dati locali del thread.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Threading.Tasks.ParallelOptions,System.Action{System.Int32})">
<summary>Esegue un ciclo for (For in Visual Basic) nel quale le iterazioni possono essere eseguite in parallelo ed è possibile configurare le opzioni di ciclo.</summary>
<returns>Struttura che contiene informazioni sulla parte di ciclo completata.</returns>
<param name="fromInclusive">Indice iniziale, incluso.</param>
<param name="toExclusive">Indice finale, escluso.</param>
<param name="parallelOptions">Oggetto che configura il comportamento di questa operazione.</param>
<param name="body">Delegato richiamato una volta per iterazione.</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Threading.Tasks.ParallelOptions,System.Action{System.Int32,System.Threading.Tasks.ParallelLoopState})">
<summary>Esegue un ciclo for (For in Visual Basic) nel quale le iterazioni possono essere eseguite in parallelo, è possibile configurare le opzioni di ciclo e lo stato del ciclo può essere monitorato e modificato.</summary>
<returns>Struttura che contiene informazioni sulla parte di ciclo completata.</returns>
<param name="fromInclusive">Indice iniziale, incluso.</param>
<param name="toExclusive">Indice finale, escluso.</param>
<param name="parallelOptions">Oggetto che configura il comportamento di questa operazione.</param>
<param name="body">Delegato richiamato una volta per iterazione.</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int32,System.Int32,System.Threading.Tasks.ParallelOptions,System.Func{``0},System.Func{System.Int32,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>Esegue un ciclo for (For in Visual Basic) con dati locali del thread nel quale le iterazioni possono essere eseguite in parallelo, è possibile configurare le opzioni di ciclo e lo stato del ciclo può essere monitorato e modificato.</summary>
<returns>Struttura che contiene informazioni sulla parte di ciclo completata.</returns>
<param name="fromInclusive">Indice iniziale, incluso.</param>
<param name="toExclusive">Indice finale, escluso.</param>
<param name="parallelOptions">Oggetto che configura il comportamento di questa operazione.</param>
<param name="localInit">Delegato della funzione che restituisce lo stato iniziale dei dati locali per ogni attività.</param>
<param name="body">Delegato richiamato una volta per iterazione.</param>
<param name="localFinally">Delegato che esegue un'azione finale sullo stato locale di ogni attività.</param>
<typeparam name="TLocal">Tipo dei dati locali del thread.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Action{System.Int64})">
<summary>Esegue un ciclo for (For in Visual Basic) con indici a 64 bit in cui le iterazioni possono essere eseguite in parallelo.</summary>
<returns>Struttura che contiene informazioni sulla parte di ciclo completata.</returns>
<param name="fromInclusive">Indice iniziale, incluso.</param>
<param name="toExclusive">Indice finale, escluso.</param>
<param name="body">Delegato richiamato una volta per iterazione.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Action{System.Int64,System.Threading.Tasks.ParallelLoopState})">
<summary>Esegue un loop for (For in Visual Basic) con gli indici a 64 bit in cui le iterazioni possono eseguire in parallelo e lo stato del loop può essere monitorato e manipolato.</summary>
<returns>Struttura <see cref="T:System.Threading.Tasks.ParallelLoopResult" /> che contiene informazioni sulla parte di ciclo completata.</returns>
<param name="fromInclusive">Indice iniziale, incluso.</param>
<param name="toExclusive">Indice finale, escluso.</param>
<param name="body">Delegato richiamato una volta per iterazione.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int64,System.Int64,System.Func{``0},System.Func{System.Int64,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>Esegue un ciclo for (For in Visual Basic) con indici a 64 bit e dati locali del thread nel quale le iterazioni possono essere eseguite in parallelo e lo stato del ciclo può essere monitorato e modificato.</summary>
<returns>Struttura che contiene informazioni sulla parte di ciclo completata.</returns>
<param name="fromInclusive">Indice iniziale, incluso.</param>
<param name="toExclusive">Indice finale, escluso.</param>
<param name="localInit">Delegato della funzione che restituisce lo stato iniziale dei dati locali per ogni attività.</param>
<param name="body">Delegato richiamato una volta per iterazione.</param>
<param name="localFinally">Delegato che esegue un'azione finale sullo stato locale di ogni attività.</param>
<typeparam name="TLocal">Tipo dei dati locali del thread.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Threading.Tasks.ParallelOptions,System.Action{System.Int64})">
<summary>Esegue un ciclo for (For in Visual Basic) con indici a 64 bit in cui è possibile eseguire le iterazioni in parallelo e configurare le opzioni del ciclo.</summary>
<returns>Struttura che contiene informazioni sulla parte di ciclo completata.</returns>
<param name="fromInclusive">Indice iniziale, incluso.</param>
<param name="toExclusive">Indice finale, escluso.</param>
<param name="parallelOptions">Oggetto che configura il comportamento di questa operazione.</param>
<param name="body">Delegato richiamato una volta per iterazione.</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Threading.Tasks.ParallelOptions,System.Action{System.Int64,System.Threading.Tasks.ParallelLoopState})">
<summary>Esegue un ciclo for (For in Visual Basic) con indici a 64 bit nel quale le iterazioni possono essere eseguite in parallelo, è possibile configurare le opzioni di ciclo e lo stato del ciclo può essere monitorato e modificato.</summary>
<returns>Struttura che contiene informazioni sulla parte di ciclo completata.</returns>
<param name="fromInclusive">Indice iniziale, incluso.</param>
<param name="toExclusive">Indice finale, escluso.</param>
<param name="parallelOptions">Oggetto che configura il comportamento di questa operazione.</param>
<param name="body">Delegato richiamato una volta per iterazione.</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int64,System.Int64,System.Threading.Tasks.ParallelOptions,System.Func{``0},System.Func{System.Int64,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>Esegue un ciclo for (For in Visual Basic) con indici a 64 bit e dati locali del thread nel quale le iterazioni possono essere eseguite in parallelo, è possibile configurare le opzioni di ciclo e lo stato del ciclo può essere monitorato e modificato.</summary>
<returns>Struttura che contiene informazioni sulla parte di ciclo completata.</returns>
<param name="fromInclusive">Indice iniziale, incluso.</param>
<param name="toExclusive">Indice finale, escluso.</param>
<param name="parallelOptions">Oggetto che configura il comportamento di questa operazione.</param>
<param name="localInit">Delegato della funzione che restituisce lo stato iniziale dei dati locali per ogni thread.</param>
<param name="body">Delegato richiamato una volta per iterazione.</param>
<param name="localFinally">Delegato che esegue un'azione finale sullo stato locale di ogni thread.</param>
<typeparam name="TLocal">Tipo dei dati locali del thread.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.OrderablePartitioner{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary>Esegue un'operazione foreach (For Each in Visual Basic) su un oggetto <see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" /> nel quale le iterazioni possono essere eseguite in parallelo e lo stato del ciclo può essere monitorato e modificato.</summary>
<returns>Struttura che contiene informazioni sulla parte di ciclo completata.</returns>
<param name="source">Oggetto Partitioner ordinabile contenente l'origine dati originale.</param>
<param name="body">Delegato richiamato una volta per iterazione.</param>
<typeparam name="TSource">Tipo degli elementi nell'oggetto <paramref name="source" />.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> orderable partitioner returns false.-or-The <see cref="P:System.Collections.Concurrent.OrderablePartitioner`1.KeysNormalized" /> property in the source orderable partitioner returns false.-or-Any methods in the source orderable partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.OrderablePartitioner{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>Esegue un'operazione foreach (For Each in Visual Basic) con dati locali del thread su un oggetto <see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" /> nel quale le iterazioni possono essere eseguite in parallelo, è possibile configurare le opzioni di ciclo e lo stato del ciclo può essere monitorato e modificato.</summary>
<returns>Struttura che contiene informazioni sulla parte di ciclo completata.</returns>
<param name="source">Oggetto Partitioner ordinabile contenente l'origine dati originale.</param>
<param name="localInit">Delegato della funzione che restituisce lo stato iniziale dei dati locali per ogni attività.</param>
<param name="body">Delegato richiamato una volta per iterazione.</param>
<param name="localFinally">Delegato che esegue un'azione finale sullo stato locale di ogni attività.</param>
<typeparam name="TSource">Tipo degli elementi nell'oggetto <paramref name="source" />.</typeparam>
<typeparam name="TLocal">Tipo dei dati locali del thread.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.OrderablePartitioner{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary>Esegue un'operazione foreach (For Each in Visual Basic) su un oggetto <see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" /> nel quale le iterazioni possono essere eseguite in parallelo, è possibile configurare le opzioni di ciclo e lo stato del ciclo può essere monitorato e modificato.</summary>
<returns>Struttura che contiene informazioni sulla parte di ciclo completata.</returns>
<param name="source">Oggetto Partitioner ordinabile contenente l'origine dati originale.</param>
<param name="parallelOptions">Oggetto che configura il comportamento di questa operazione.</param>
<param name="body">Delegato richiamato una volta per iterazione.</param>
<typeparam name="TSource">Tipo degli elementi nell'oggetto <paramref name="source" />.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> orderable partitioner returns false.-or-The <see cref="P:System.Collections.Concurrent.OrderablePartitioner`1.KeysNormalized" /> property in the <paramref name="source" /> orderable partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> orderable partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.OrderablePartitioner{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>Esegue un'operazione foreach (For Each in Visual Basic) con indici a 64 bit e dati locali del thread su un oggetto <see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" /> nel quale le iterazioni possono essere eseguite in parallelo, è possibile configurare le opzioni di ciclo e lo stato del ciclo può essere monitorato e modificato.</summary>
<returns>Struttura che contiene informazioni sulla parte di ciclo completata.</returns>
<param name="source">Oggetto Partitioner ordinabile contenente l'origine dati originale.</param>
<param name="parallelOptions">Oggetto che configura il comportamento di questa operazione.</param>
<param name="localInit">Delegato della funzione che restituisce lo stato iniziale dei dati locali per ogni attività.</param>
<param name="body">Delegato richiamato una volta per iterazione.</param>
<param name="localFinally">Delegato che esegue un'azione finale sullo stato locale di ogni attività.</param>
<typeparam name="TSource">Tipo degli elementi nell'oggetto <paramref name="source" />.</typeparam>
<typeparam name="TLocal">Tipo dei dati locali del thread.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> or <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Action{``0})">
<summary>Esegue un'operazione foreach (For Each in Visual Basic) su un oggetto <see cref="T:System.Collections.Concurrent.Partitioner" /> in cui le iterazioni possono essere eseguite in parallelo.</summary>
<returns>Struttura che contiene informazioni sulla parte di ciclo completata.</returns>
<param name="source">Oggetto Partitioner contenente l'origine dati originale.</param>
<param name="body">Delegato richiamato una volta per iterazione.</param>
<typeparam name="TSource">Tipo degli elementi nell'oggetto <paramref name="source" />.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> partitioner return null.-or-The <see cref="M:System.Collections.Concurrent.Partitioner`1.GetPartitions(System.Int32)" /> method in the <paramref name="source" /> partitioner does not return the correct number of partitions.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary>Esegue un'operazione foreach (For Each in Visual Basic) su un oggetto <see cref="T:System.Collections.Concurrent.Partitioner" /> nel quale le iterazioni possono essere eseguite in parallelo e lo stato del ciclo può essere monitorato e modificato.</summary>
<returns>Struttura che contiene informazioni sulla parte di ciclo completata.</returns>
<param name="source">Oggetto Partitioner contenente l'origine dati originale.</param>
<param name="body">Delegato richiamato una volta per iterazione.</param>
<typeparam name="TSource">Tipo degli elementi nell'oggetto <paramref name="source" />.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-A method in the <paramref name="source" /> partitioner returns null.-or-The <see cref="M:System.Collections.Concurrent.Partitioner`1.GetPartitions(System.Int32)" /> method in the <paramref name="source" /> partitioner does not return the correct number of partitions.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.Partitioner{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>Esegue un'operazione foreach (For Each in Visual Basic) con dati locali del thread su un oggetto <see cref="T:System.Collections.Concurrent.Partitioner" /> nel quale le iterazioni possono essere eseguite in parallelo e lo stato del ciclo può essere monitorato e modificato.</summary>
<returns>Struttura che contiene informazioni sulla parte di ciclo completata.</returns>
<param name="source">Oggetto Partitioner contenente l'origine dati originale.</param>
<param name="localInit">Delegato della funzione che restituisce lo stato iniziale dei dati locali per ogni attività.</param>
<param name="body">Delegato richiamato una volta per iterazione.</param>
<param name="localFinally">Delegato che esegue un'azione finale sullo stato locale di ogni attività.</param>
<typeparam name="TSource">Tipo degli elementi nell'oggetto <paramref name="source" />.</typeparam>
<typeparam name="TLocal">Tipo dei dati locali del thread.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0})">
<summary>Esegue un'operazione foreach (For Each in Visual Basic) su un oggetto <see cref="T:System.Collections.Concurrent.Partitioner" /> nel quale le iterazioni possono essere eseguite in parallelo ed è possibile configurare le opzioni di ciclo.</summary>
<returns>Struttura che contiene informazioni sulla parte di ciclo completata.</returns>
<param name="source">Oggetto Partitioner contenente l'origine dati originale.</param>
<param name="parallelOptions">Oggetto che configura il comportamento di questa operazione.</param>
<param name="body">Delegato richiamato una volta per iterazione.</param>
<typeparam name="TSource">Tipo degli elementi nell'oggetto <paramref name="source" />.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary>Esegue un'operazione foreach (For Each in Visual Basic) su un oggetto <see cref="T:System.Collections.Concurrent.Partitioner" /> nel quale le iterazioni possono essere eseguite in parallelo, è possibile configurare le opzioni di ciclo e lo stato del ciclo può essere monitorato e modificato.</summary>
<returns>Struttura che contiene informazioni sulla parte di ciclo completata.</returns>
<param name="source">Oggetto Partitioner contenente l'origine dati originale.</param>
<param name="parallelOptions">Oggetto che configura il comportamento di questa operazione.</param>
<param name="body">Delegato richiamato una volta per iterazione.</param>
<typeparam name="TSource">Tipo degli elementi nell'oggetto <paramref name="source" />.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.Partitioner{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>Esegue un'operazione foreach (For Each in Visual Basic) con dati locali del thread su un oggetto <see cref="T:System.Collections.Concurrent.Partitioner" /> nel quale le iterazioni possono essere eseguite in parallelo, è possibile configurare le opzioni di ciclo e lo stato del ciclo può essere monitorato e modificato.</summary>
<returns>Struttura che contiene informazioni sulla parte di ciclo completata.</returns>
<param name="source">Oggetto Partitioner contenente l'origine dati originale.</param>
<param name="parallelOptions">Oggetto che configura il comportamento di questa operazione.</param>
<param name="localInit">Delegato della funzione che restituisce lo stato iniziale dei dati locali per ogni attività.</param>
<param name="body">Delegato richiamato una volta per iterazione.</param>
<param name="localFinally">Delegato che esegue un'azione finale sullo stato locale di ogni attività.</param>
<typeparam name="TSource">Tipo degli elementi nell'oggetto <paramref name="source" />.</typeparam>
<typeparam name="TLocal">Tipo dei dati locali del thread.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0})">
<summary>Esegue un'operazione foreach (For Each in Visual Basic) su un oggetto <see cref="T:System.Collections.IEnumerable" /> in cui le iterazioni possono essere eseguite in parallelo.</summary>
<returns>Struttura che contiene informazioni sulla parte di ciclo completata.</returns>
<param name="source">Origine dati enumerabile.</param>
<param name="body">Delegato richiamato una volta per iterazione.</param>
<typeparam name="TSource">Tipo di dati nell'origine.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary>Esegue un'operazione foreach (For Each in Visual Basic) su un oggetto <see cref="T:System.Collections.IEnumerable" /> nel quale le iterazioni possono essere eseguite in parallelo e lo stato del ciclo può essere monitorato e modificato.</summary>
<returns>Struttura che contiene informazioni sulla parte di ciclo completata.</returns>
<param name="source">Origine dati enumerabile.</param>
<param name="body">Delegato richiamato una volta per iterazione.</param>
<typeparam name="TSource">Tipo di dati nell'origine.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary>Esegue un'operazione foreach (For Each in Visual Basic) con indici a 64 bit su un oggetto <see cref="T:System.Collections.IEnumerable" /> nel quale le iterazioni possono essere eseguite in parallelo e lo stato del ciclo può essere monitorato e modificato.</summary>
<returns>Struttura che contiene informazioni sulla parte di ciclo completata.</returns>
<param name="source">Origine dati enumerabile.</param>
<param name="body">Delegato richiamato una volta per iterazione.</param>
<typeparam name="TSource">Tipo di dati nell'origine.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>Esegue un'operazione foreach (For Each in Visual Basic) con dati locali del thread su un oggetto <see cref="T:System.Collections.IEnumerable" /> nel quale le iterazioni possono essere eseguite in parallelo e lo stato del ciclo può essere monitorato e modificato.</summary>
<returns>Struttura che contiene informazioni sulla parte di ciclo completata.</returns>
<param name="source">Origine dati enumerabile.</param>
<param name="localInit">Delegato della funzione che restituisce lo stato iniziale dei dati locali per ogni attività.</param>
<param name="body">Delegato richiamato una volta per iterazione.</param>
<param name="localFinally">Delegato che esegue un'azione finale sullo stato locale di ogni attività.</param>
<typeparam name="TSource">Tipo di dati nell'origine.</typeparam>
<typeparam name="TLocal">Tipo dei dati locali del thread.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>Esegue un'operazione foreach (For Each in Visual Basic) con dati locali del thread su un oggetto <see cref="T:System.Collections.IEnumerable" /> nel quale le iterazioni possono essere eseguite in parallelo e lo stato del ciclo può essere monitorato e modificato.</summary>
<returns>Struttura che contiene informazioni sulla parte di ciclo completata.</returns>
<param name="source">Origine dati enumerabile.</param>
<param name="localInit">Delegato della funzione che restituisce lo stato iniziale dei dati locali per ogni attività.</param>
<param name="body">Delegato richiamato una volta per iterazione.</param>
<param name="localFinally">Delegato che esegue un'azione finale sullo stato locale di ogni attività.</param>
<typeparam name="TSource">Tipo di dati nell'origine.</typeparam>
<typeparam name="TLocal">Tipo dei dati locali del thread.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0})">
<summary>Esegue un'operazione foreach (For Each in Visual Basic) su un oggetto <see cref="T:System.Collections.IEnumerable" /> nel quale le iterazioni possono essere eseguite in parallelo ed è possibile configurare le opzioni di ciclo.</summary>
<returns>Struttura che contiene informazioni sulla parte di ciclo completata.</returns>
<param name="source">Origine dati enumerabile.</param>
<param name="parallelOptions">Oggetto che configura il comportamento di questa operazione.</param>
<param name="body">Delegato richiamato una volta per iterazione.</param>
<typeparam name="TSource">Tipo di dati nell'origine.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary>Esegue un'operazione foreach (For Each in Visual Basic) su un oggetto <see cref="T:System.Collections.IEnumerable" /> nel quale le iterazioni possono essere eseguite in parallelo, è possibile configurare le opzioni di ciclo e lo stato del ciclo può essere monitorato e modificato.</summary>
<returns>Struttura che contiene informazioni sulla parte di ciclo completata.</returns>
<param name="source">Origine dati enumerabile.</param>
<param name="parallelOptions">Oggetto che configura il comportamento di questa operazione.</param>
<param name="body">Delegato richiamato una volta per iterazione.</param>
<typeparam name="TSource">Tipo di dati nell'origine.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary>Esegue un'operazione foreach (For Each in Visual Basic) con indici a 64 bit su un oggetto <see cref="T:System.Collections.IEnumerable" /> nel quale le iterazioni possono essere eseguite in parallelo, è possibile configurare le opzioni di ciclo e lo stato del ciclo può essere monitorato e modificato.</summary>
<returns>Struttura che contiene informazioni sulla parte di ciclo completata.</returns>
<param name="source">Origine dati enumerabile.</param>
<param name="parallelOptions">Oggetto che configura il comportamento di questa operazione.</param>
<param name="body">Delegato richiamato una volta per iterazione.</param>
<typeparam name="TSource">Tipo di dati nell'origine.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>Esegue un'operazione foreach (For Each in Visual Basic) con dati locali del thread su un oggetto <see cref="T:System.Collections.IEnumerable" /> nel quale le iterazioni possono essere eseguite in parallelo, è possibile configurare le opzioni di ciclo e lo stato del ciclo può essere monitorato e modificato.</summary>
<returns>Struttura che contiene informazioni sulla parte di ciclo completata.</returns>
<param name="source">Origine dati enumerabile.</param>
<param name="parallelOptions">Oggetto che configura il comportamento di questa operazione.</param>
<param name="localInit">Delegato della funzione che restituisce lo stato iniziale dei dati locali per ogni attività.</param>
<param name="body">Delegato richiamato una volta per iterazione.</param>
<param name="localFinally">Delegato che esegue un'azione finale sullo stato locale di ogni attività.</param>
<typeparam name="TSource">Tipo di dati nell'origine.</typeparam>
<typeparam name="TLocal">Tipo dei dati locali del thread.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>Esegue un'operazione foreach (For Each in Visual Basic) con dati locali del thread e indici a 64 bit su un oggetto <see cref="T:System.Collections.IEnumerable" /> nel quale le iterazioni possono essere eseguite in parallelo, è possibile configurare le opzioni di ciclo e lo stato del ciclo può essere monitorato e modificato.</summary>
<returns>Struttura che contiene informazioni sulla parte di ciclo completata.</returns>
<param name="source">Origine dati enumerabile.</param>
<param name="parallelOptions">Oggetto che configura il comportamento di questa operazione.</param>
<param name="localInit">Delegato della funzione che restituisce lo stato iniziale dei dati locali per ogni attività.</param>
<param name="body">Delegato richiamato una volta per iterazione.</param>
<param name="localFinally">Delegato che esegue un'azione finale sullo stato locale di ogni attività.</param>
<typeparam name="TSource">Tipo di dati nell'origine.</typeparam>
<typeparam name="TLocal">Tipo dei dati locali del thread.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.Invoke(System.Action[])">
<summary>Esegue ognuna delle azioni fornite, eventualmente in parallelo.</summary>
<param name="actions">Matrice di <see cref="T:System.Action" /> da eseguire.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="actions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that is thrown when any action in the <paramref name="actions" /> array throws an exception.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="actions" /> array contains a null element.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.Invoke(System.Threading.Tasks.ParallelOptions,System.Action[])">
<summary>Esegue ciascuna delle azioni fornite, possibilmente in parallelo, a meno che l'operazione non venga annullata dall'utente.</summary>
<param name="parallelOptions">Oggetto che configura il comportamento di questa operazione.</param>
<param name="actions">Matrice di azioni da eseguire.</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> is set.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="actions" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that is thrown when any action in the <paramref name="actions" /> array throws an exception.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="actions" /> array contains a null element.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="T:System.Threading.Tasks.ParallelLoopResult">
<summary>Fornisce lo stato di completamento dell'esecuzione di un ciclo <see cref="T:System.Threading.Tasks.Parallel" />.</summary>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopResult.IsCompleted">
<summary>Ottiene un valore che indica se il ciclo è stato eseguito fino al completamento, ovvero se tutte le iterazioni del ciclo sono state eseguite e il ciclo non ha ricevuto alcuna richiesta di interruzione anticipata.</summary>
<returns>true se il ciclo è stato eseguito fino al completamento; in caso contrario, false.</returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopResult.LowestBreakIteration">
<summary>Ottiene l'indice minimo di iterazione del ciclo da cui è stato chiamato l'oggetto <see cref="M:System.Threading.Tasks.ParallelLoopState.Break" />.</summary>
<returns>Restituisce un intero che rappresenta l'iterazione minima dalla quale è stata chiamata l'istruzione Break.</returns>
</member>
<member name="T:System.Threading.Tasks.ParallelLoopState">
<summary>Consente alle iterazioni dei cicli paralleli di interagire con altre iterazioni.Un'istanza di questa classe viene fornita dalla classe <see cref="T:System.Threading.Tasks.Parallel" /> a ogni ciclo. Non è possibile creare istanze nel codice utente.</summary>
</member>
<member name="M:System.Threading.Tasks.ParallelLoopState.Break">
<summary>Comunica che il ciclo <see cref="T:System.Threading.Tasks.Parallel" /> deve interrompere l'esecuzione non appena è stato raggiunto il numero di iterazioni oltre l'iterazione corrente desiderato dal sistema. </summary>
<exception cref="T:System.InvalidOperationException">Il metodo <see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" /> è stato chiamato precedentemente.<see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> e <see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" /> non possono essere utilizzati in combinazione da iterazioni dello stesso ciclo.</exception>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.IsExceptional">
<summary>Ottiene un valore che indica se un'iterazione del ciclo ha generato un'eccezione che non è stata gestita da tale iterazione. </summary>
<returns>true se è stata generata un'eccezione non gestita; in caso contrario, false. </returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.IsStopped">
<summary>Ottiene un valore che indica se un'iterazione del ciclo ha chiamato il metodo <see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" />. </summary>
<returns>true se un'iterazione ha arrestato il ciclo chiamando il metodo <see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" />; in caso contrario, false. </returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.LowestBreakIteration">
<summary>Ottiene il numero di iterazione minimo del ciclo da cui è stato chiamato l'oggetto <see cref="M:System.Threading.Tasks.ParallelLoopState.Break" />. </summary>
<returns>Numero di iterazione minimo del ciclo da cui è stato chiamato l'oggetto <see cref="M:System.Threading.Tasks.ParallelLoopState.Break" />.Nel caso di un ciclo <see cref="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Action{``0})" />, il valore è basato su un indice generato internamente.</returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.ShouldExitCurrentIteration">
<summary>Ottiene un valore che indica se terminare l'iterazione corrente del ciclo in base alle richieste fatte da questa o da altre iterazioni.</summary>
<returns>true se l'iterazione corrente deve essere terminata; in caso contrario, false. </returns>
</member>
<member name="M:System.Threading.Tasks.ParallelLoopState.Stop">
<summary>Comunica che il ciclo <see cref="T:System.Threading.Tasks.Parallel" /> deve interrompere l'esecuzione non appena il sistema lo richieda.</summary>
<exception cref="T:System.InvalidOperationException">Il <see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> metodo è stato chiamato in precedenza.<see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> e <see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" /> non possono essere utilizzati in combinazione da iterazioni dello stesso ciclo.</exception>
</member>
<member name="T:System.Threading.Tasks.ParallelOptions">
<summary>Contiene opzioni che configurano il funzionamento dei metodi nella classe <see cref="T:System.Threading.Tasks.Parallel" />.</summary>
</member>
<member name="M:System.Threading.Tasks.ParallelOptions.#ctor">
<summary>Inizializza una nuova istanza della classe <see cref="T:System.Threading.Tasks.ParallelOptions" />.</summary>
</member>
<member name="P:System.Threading.Tasks.ParallelOptions.CancellationToken">
<summary>Ottiene o imposta l'oggetto <see cref="T:System.Threading.CancellationToken" /> associato a questa istanza di <see cref="T:System.Threading.Tasks.ParallelOptions" />.</summary>
<returns>Token associato a questa istanza.</returns>
</member>
<member name="P:System.Threading.Tasks.ParallelOptions.MaxDegreeOfParallelism">
<summary>Ottiene o imposta il massimo numero di attività simultanee abilitate da questa istanza di <see cref="T:System.Threading.Tasks.ParallelOptions" />.</summary>
<returns>Intero che rappresenta il massimo grado di parallelismo.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">La proprietà viene impostata su zero o su un valore minore di -1.</exception>
</member>
<member name="P:System.Threading.Tasks.ParallelOptions.TaskScheduler">
<summary>Ottiene o imposta l'oggetto <see cref="T:System.Threading.Tasks.TaskScheduler" /> associato a questa istanza di <see cref="T:System.Threading.Tasks.ParallelOptions" />.L'impostazione di questa proprietà su null indica che deve essere utilizzata l'utilità di pianificazione corrente.</summary>
<returns>Utilità di pianificazione associata a questa istanza.</returns>
</member>
</members>
</doc>

View File

@@ -0,0 +1,501 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Threading.Tasks.Parallel</name>
</assembly>
<members>
<member name="T:System.Threading.Tasks.Parallel">
<summary>並列ループおよび並列領域のサポートを提供します。</summary>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Action{System.Int32})">
<summary>イテレーションが並列で実行される可能性のある for (Visual Basic の場合は For) ループを実行します。</summary>
<returns>完了したループの部分に関する情報を格納している構造。</returns>
<param name="fromInclusive">開始インデックス。ここで指定したインデックスから処理が開始されます。</param>
<param name="toExclusive">終了インデックス。ここで指定したインデックスの前のインデックスまで処理が行われます。</param>
<param name="body">1 回のイテレーションにつき 1 回呼び出されるデリゲート。</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Action{System.Int32,System.Threading.Tasks.ParallelLoopState})">
<summary>イテレーションが並列で実行される可能性があり、ループの状態を監視および操作できる for (Visual Basic の場合は For) ループを実行します。 </summary>
<returns>完了したループの部分に関する情報を格納している構造。</returns>
<param name="fromInclusive">開始インデックス。ここで指定したインデックスから処理が開始されます。</param>
<param name="toExclusive">終了インデックス。ここで指定したインデックスの前のインデックスまで処理が行われます。</param>
<param name="body">1 回のイテレーションにつき 1 回呼び出されるデリゲート。</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int32,System.Int32,System.Func{``0},System.Func{System.Int32,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>イテレーションが並列で実行される可能性があり、ループの状態を監視および操作できる、スレッド ローカル データを持つ for (Visual Basic の場合は For) ループを実行します。</summary>
<returns>完了したループの部分に関する情報を格納している構造。</returns>
<param name="fromInclusive">開始インデックス。ここで指定したインデックスから処理が開始されます。</param>
<param name="toExclusive">終了インデックス。ここで指定したインデックスの前のインデックスまで処理が行われます。</param>
<param name="localInit">各タスクのローカル データの初期状態を返す関数デリゲート。</param>
<param name="body">1 回のイテレーションにつき 1 回呼び出されるデリゲート。</param>
<param name="localFinally">各タスクのローカル状態に対して最後の操作を行うデリゲート。</param>
<typeparam name="TLocal">スレッド ローカル データの型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Threading.Tasks.ParallelOptions,System.Action{System.Int32})">
<summary>イテレーションが並列で実行される可能性があり、ループ オプションを構成できる for (Visual Basic の場合は For) ループを実行します。</summary>
<returns>完了したループの部分に関する情報を格納している構造。</returns>
<param name="fromInclusive">開始インデックス。ここで指定したインデックスから処理が開始されます。</param>
<param name="toExclusive">終了インデックス。ここで指定したインデックスの前のインデックスまで処理が行われます。</param>
<param name="parallelOptions">この操作の動作を構成するオブジェクト。</param>
<param name="body">1 回のイテレーションにつき 1 回呼び出されるデリゲート。</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Threading.Tasks.ParallelOptions,System.Action{System.Int32,System.Threading.Tasks.ParallelLoopState})">
<summary>イテレーションが並列で実行される可能性があり、ループ オプションを構成でき、ループの状態を監視および操作できる for (Visual Basic の場合は For) ループを実行します。</summary>
<returns>完了したループの部分に関する情報を格納している構造。</returns>
<param name="fromInclusive">開始インデックス。ここで指定したインデックスから処理が開始されます。</param>
<param name="toExclusive">終了インデックス。ここで指定したインデックスの前のインデックスまで処理が行われます。</param>
<param name="parallelOptions">この操作の動作を構成するオブジェクト。</param>
<param name="body">1 回のイテレーションにつき 1 回呼び出されるデリゲート。</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int32,System.Int32,System.Threading.Tasks.ParallelOptions,System.Func{``0},System.Func{System.Int32,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>イテレーションが並列で実行される可能性があり、ループ オプションを構成でき、ループの状態を監視および操作できる、スレッド ローカル データを持つ for (Visual Basic の場合は For) ループを実行します。</summary>
<returns>完了したループの部分に関する情報を格納している構造。</returns>
<param name="fromInclusive">開始インデックス。ここで指定したインデックスから処理が開始されます。</param>
<param name="toExclusive">終了インデックス。ここで指定したインデックスの前のインデックスまで処理が行われます。</param>
<param name="parallelOptions">この操作の動作を構成するオブジェクト。</param>
<param name="localInit">各タスクのローカル データの初期状態を返す関数デリゲート。</param>
<param name="body">1 回のイテレーションにつき 1 回呼び出されるデリゲート。</param>
<param name="localFinally">各タスクのローカル状態に対して最後の操作を行うデリゲート。</param>
<typeparam name="TLocal">スレッド ローカル データの型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Action{System.Int64})">
<summary>イテレーションが並列で実行される可能性のある、64 ビットのインデックスを持つ for (Visual Basic の場合は For) ループを実行します。</summary>
<returns>完了したループの部分に関する情報を格納している構造。</returns>
<param name="fromInclusive">開始インデックス。ここで指定したインデックスから処理が開始されます。</param>
<param name="toExclusive">終了インデックス。ここで指定したインデックスの前のインデックスまで処理が行われます。</param>
<param name="body">1 回のイテレーションにつき 1 回呼び出されるデリゲート。</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Action{System.Int64,System.Threading.Tasks.ParallelLoopState})">
<summary>イテレーションが並列で実行される可能性があり、ループの状態を監視および操作できる、64 ビットのインデックスを持つ for (Visual Basic の場合は For) ループを実行します。</summary>
<returns>完了したループの部分に関する情報を格納している <see cref="T:System.Threading.Tasks.ParallelLoopResult" /> 構造体。</returns>
<param name="fromInclusive">開始インデックス。ここで指定したインデックスから処理が開始されます。</param>
<param name="toExclusive">終了インデックス。ここで指定したインデックスの前のインデックスまで処理が行われます。</param>
<param name="body">1 回のイテレーションにつき 1 回呼び出されるデリゲート。</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int64,System.Int64,System.Func{``0},System.Func{System.Int64,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>イテレーションが並列で実行される可能性があり、ループの状態を監視および操作できる、64 ビットのインデックスとスレッド ローカル データを持つ for (Visual Basic の場合は For) ループを実行します。</summary>
<returns>完了したループの部分に関する情報を格納している構造。</returns>
<param name="fromInclusive">開始インデックス。ここで指定したインデックスから処理が開始されます。</param>
<param name="toExclusive">終了インデックス。ここで指定したインデックスの前のインデックスまで処理が行われます。</param>
<param name="localInit">各タスクのローカル データの初期状態を返す関数デリゲート。</param>
<param name="body">1 回のイテレーションにつき 1 回呼び出されるデリゲート。</param>
<param name="localFinally">各タスクのローカル状態に対して最後の操作を行うデリゲート。</param>
<typeparam name="TLocal">スレッド ローカル データの型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Threading.Tasks.ParallelOptions,System.Action{System.Int64})">
<summary>イテレーションが並列で実行される可能性があり、ループ オプションを構成できる、64 ビットのインデックスを持つ for (Visual Basic の場合は For) ループを実行します。</summary>
<returns>完了したループの部分に関する情報を格納している構造。</returns>
<param name="fromInclusive">開始インデックス。ここで指定したインデックスから処理が開始されます。</param>
<param name="toExclusive">終了インデックス。ここで指定したインデックスの前のインデックスまで処理が行われます。</param>
<param name="parallelOptions">この操作の動作を構成するオブジェクト。</param>
<param name="body">1 回のイテレーションにつき 1 回呼び出されるデリゲート。</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Threading.Tasks.ParallelOptions,System.Action{System.Int64,System.Threading.Tasks.ParallelLoopState})">
<summary>イテレーションが並列で実行される可能性があり、ループ オプションを構成でき、ループの状態を監視および操作できる、64 ビットのインデックスを持つ for (Visual Basic の場合は For) ループを実行します。</summary>
<returns>完了したループの部分に関する情報を格納している構造。</returns>
<param name="fromInclusive">開始インデックス。ここで指定したインデックスから処理が開始されます。</param>
<param name="toExclusive">終了インデックス。ここで指定したインデックスの前のインデックスまで処理が行われます。</param>
<param name="parallelOptions">この操作の動作を構成するオブジェクト。</param>
<param name="body">1 回のイテレーションにつき 1 回呼び出されるデリゲート。</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int64,System.Int64,System.Threading.Tasks.ParallelOptions,System.Func{``0},System.Func{System.Int64,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>イテレーションが並列で実行される可能性があり、ループ オプションを構成でき、ループの状態を監視および操作できる、64 ビットのインデックスとスレッド ローカル データを持つ for (Visual Basic の場合は For) ループを実行します。</summary>
<returns>完了したループの部分に関する情報を格納している構造。</returns>
<param name="fromInclusive">開始インデックス。ここで指定したインデックスから処理が開始されます。</param>
<param name="toExclusive">終了インデックス。ここで指定したインデックスの前のインデックスまで処理が行われます。</param>
<param name="parallelOptions">この操作の動作を構成するオブジェクト。</param>
<param name="localInit">各スレッドのローカル データの初期状態を返す関数デリゲート。</param>
<param name="body">1 回のイテレーションにつき 1 回呼び出されるデリゲート。</param>
<param name="localFinally">各スレッドのローカル状態に対して最後の操作を行うデリゲート。</param>
<typeparam name="TLocal">スレッド ローカル データの型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.OrderablePartitioner{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary>
<see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" /> に対して、イテレーションが並列で実行される可能性があり、ループの状態を監視および操作できる foreach (Visual Basic の場合は For Each) 操作を実行します。</summary>
<returns>完了したループの部分に関する情報を格納している構造。</returns>
<param name="source">元のデータ ソースを格納している順序付け可能なパーティショナー。</param>
<param name="body">1 回のイテレーションにつき 1 回呼び出されるデリゲート。</param>
<typeparam name="TSource">
<paramref name="source" /> の要素の型。 </typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> orderable partitioner returns false.-or-The <see cref="P:System.Collections.Concurrent.OrderablePartitioner`1.KeysNormalized" /> property in the source orderable partitioner returns false.-or-Any methods in the source orderable partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.OrderablePartitioner{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>
<see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" /> に対して、イテレーションが並列で実行される可能性があり、ループ オプションを構成でき、ループの状態を監視および操作できる、スレッド ローカル データを持つ foreach (Visual Basic の場合は For Each) 操作を実行します。</summary>
<returns>完了したループの部分に関する情報を格納している構造。</returns>
<param name="source">元のデータ ソースを格納している順序付け可能なパーティショナー。</param>
<param name="localInit">各タスクのローカル データの初期状態を返す関数デリゲート。</param>
<param name="body">1 回のイテレーションにつき 1 回呼び出されるデリゲート。</param>
<param name="localFinally">各タスクのローカル状態に対して最後の操作を行うデリゲート。</param>
<typeparam name="TSource">
<paramref name="source" /> の要素の型。 </typeparam>
<typeparam name="TLocal">スレッド ローカル データの型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.OrderablePartitioner{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary>
<see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" /> に対して、イテレーションが並列で実行される可能性があり、ループ オプションを構成でき、ループの状態を監視および操作できる foreach (Visual Basic の場合は For Each) 操作を実行します。</summary>
<returns>完了したループの部分に関する情報を格納している構造。</returns>
<param name="source">元のデータ ソースを格納している順序付け可能なパーティショナー。</param>
<param name="parallelOptions">この操作の動作を構成するオブジェクト。</param>
<param name="body">1 回のイテレーションにつき 1 回呼び出されるデリゲート。</param>
<typeparam name="TSource">
<paramref name="source" /> の要素の型。 </typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> orderable partitioner returns false.-or-The <see cref="P:System.Collections.Concurrent.OrderablePartitioner`1.KeysNormalized" /> property in the <paramref name="source" /> orderable partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> orderable partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.OrderablePartitioner{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>
<see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" /> に対して、イテレーションが並列で実行される可能性があり、ループ オプションを構成でき、ループの状態を監視および操作できる、64 ビットのインデックスとスレッド ローカル データを持つ foreach (Visual Basic の場合は For Each) 操作を実行します。</summary>
<returns>完了したループの部分に関する情報を格納している構造。</returns>
<param name="source">元のデータ ソースを格納している順序付け可能なパーティショナー。</param>
<param name="parallelOptions">この操作の動作を構成するオブジェクト。</param>
<param name="localInit">各タスクのローカル データの初期状態を返す関数デリゲート。</param>
<param name="body">1 回のイテレーションにつき 1 回呼び出されるデリゲート。</param>
<param name="localFinally">各タスクのローカル状態に対して最後の操作を行うデリゲート。</param>
<typeparam name="TSource">
<paramref name="source" /> の要素の型。 </typeparam>
<typeparam name="TLocal">スレッド ローカル データの型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> or <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Action{``0})">
<summary>
<see cref="T:System.Collections.Concurrent.Partitioner" /> に対して、イテレーションが並列で実行される可能性のある foreach (Visual Basic の場合は For Each) 操作を実行します。</summary>
<returns>完了したループの部分に関する情報を格納している構造。</returns>
<param name="source">元のデータ ソースを格納しているパーティショナー。</param>
<param name="body">1 回のイテレーションにつき 1 回呼び出されるデリゲート。</param>
<typeparam name="TSource">
<paramref name="source" /> の要素の型。 </typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> partitioner return null.-or-The <see cref="M:System.Collections.Concurrent.Partitioner`1.GetPartitions(System.Int32)" /> method in the <paramref name="source" /> partitioner does not return the correct number of partitions.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary>
<see cref="T:System.Collections.Concurrent.Partitioner" /> に対して、イテレーションが並列で実行される可能性があり、ループの状態を監視および操作できる foreach (Visual Basic の場合は For Each) 操作を実行します。</summary>
<returns>完了したループの部分に関する情報を格納している構造。</returns>
<param name="source">元のデータ ソースを格納しているパーティショナー。</param>
<param name="body">1 回のイテレーションにつき 1 回呼び出されるデリゲート。</param>
<typeparam name="TSource">
<paramref name="source" /> の要素の型。 </typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-A method in the <paramref name="source" /> partitioner returns null.-or-The <see cref="M:System.Collections.Concurrent.Partitioner`1.GetPartitions(System.Int32)" /> method in the <paramref name="source" /> partitioner does not return the correct number of partitions.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.Partitioner{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>
<see cref="T:System.Collections.Concurrent.Partitioner" /> に対して、イテレーションが並列で実行される可能性があり、ループの状態を監視および操作できる、スレッド ローカル データを持つ foreach (Visual Basic の場合は For Each) 操作を実行します。</summary>
<returns>完了したループの部分に関する情報を格納している構造。</returns>
<param name="source">元のデータ ソースを格納しているパーティショナー。</param>
<param name="localInit">各タスクのローカル データの初期状態を返す関数デリゲート。</param>
<param name="body">1 回のイテレーションにつき 1 回呼び出されるデリゲート。</param>
<param name="localFinally">各タスクのローカル状態に対して最後の操作を行うデリゲート。</param>
<typeparam name="TSource">
<paramref name="source" /> の要素の型。 </typeparam>
<typeparam name="TLocal">スレッド ローカル データの型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0})">
<summary>
<see cref="T:System.Collections.Concurrent.Partitioner" /> に対して、イテレーションが並列で実行される可能性があり、ループ オプションを構成できる foreach (Visual Basic の場合は For Each) 操作を実行します。</summary>
<returns>完了したループの部分に関する情報を格納している構造。</returns>
<param name="source">元のデータ ソースを格納しているパーティショナー。</param>
<param name="parallelOptions">この操作の動作を構成するオブジェクト。</param>
<param name="body">1 回のイテレーションにつき 1 回呼び出されるデリゲート。</param>
<typeparam name="TSource">
<paramref name="source" /> の要素の型。 </typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary>
<see cref="T:System.Collections.Concurrent.Partitioner" /> に対して、イテレーションが並列で実行される可能性があり、ループ オプションを構成でき、ループの状態を監視および操作できる foreach (Visual Basic の場合は For Each) 操作を実行します。</summary>
<returns>完了したループの部分に関する情報を格納している構造。</returns>
<param name="source">元のデータ ソースを格納しているパーティショナー。</param>
<param name="parallelOptions">この操作の動作を構成するオブジェクト。</param>
<param name="body">1 回のイテレーションにつき 1 回呼び出されるデリゲート。</param>
<typeparam name="TSource">
<paramref name="source" /> の要素の型。 </typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.Partitioner{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>
<see cref="T:System.Collections.Concurrent.Partitioner" /> に対して、イテレーションが並列で実行される可能性があり、ループ オプションを構成でき、ループの状態を監視および操作できる、スレッド ローカル データを持つ foreach (Visual Basic の場合は For Each) 操作を実行します。</summary>
<returns>完了したループの部分に関する情報を格納している構造。</returns>
<param name="source">元のデータ ソースを格納しているパーティショナー。</param>
<param name="parallelOptions">この操作の動作を構成するオブジェクト。</param>
<param name="localInit">各タスクのローカル データの初期状態を返す関数デリゲート。</param>
<param name="body">1 回のイテレーションにつき 1 回呼び出されるデリゲート。</param>
<param name="localFinally">各タスクのローカル状態に対して最後の操作を行うデリゲート。</param>
<typeparam name="TSource">
<paramref name="source" /> の要素の型。 </typeparam>
<typeparam name="TLocal">スレッド ローカル データの型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0})">
<summary>
<see cref="T:System.Collections.IEnumerable" /> に対して、イテレーションが並列で実行される可能性のある foreach (Visual Basic の場合は For Each) 操作を実行します。</summary>
<returns>完了したループの部分に関する情報を格納している構造。</returns>
<param name="source">列挙可能なデータ ソース。</param>
<param name="body">1 回のイテレーションにつき 1 回呼び出されるデリゲート。</param>
<typeparam name="TSource">ソース内のデータの型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary>
<see cref="T:System.Collections.IEnumerable" /> に対して、イテレーションが並列で実行される可能性があり、ループの状態を監視および操作できる foreach (Visual Basic の場合は For Each) 操作を実行します。</summary>
<returns>完了したループの部分に関する情報を格納している構造。</returns>
<param name="source">列挙可能なデータ ソース。</param>
<param name="body">1 回のイテレーションにつき 1 回呼び出されるデリゲート。</param>
<typeparam name="TSource">ソース内のデータの型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary>
<see cref="T:System.Collections.IEnumerable" /> に対して、イテレーションが並列で実行される可能性があり、ループの状態を監視および操作できる、64 ビットのインデックスを持つ foreach (Visual Basic の場合は For Each) 操作を実行します。</summary>
<returns>完了したループの部分に関する情報を格納している構造。</returns>
<param name="source">列挙可能なデータ ソース。</param>
<param name="body">1 回のイテレーションにつき 1 回呼び出されるデリゲート。</param>
<typeparam name="TSource">ソース内のデータの型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>
<see cref="T:System.Collections.IEnumerable" /> に対して、イテレーションが並列で実行される可能性があり、ループの状態を監視および操作できる、スレッド ローカル データを持つ foreach (Visual Basic の場合は For Each) 操作を実行します。</summary>
<returns>完了したループの部分に関する情報を格納している構造。</returns>
<param name="source">列挙可能なデータ ソース。</param>
<param name="localInit">各タスクのローカル データの初期状態を返す関数デリゲート。</param>
<param name="body">1 回のイテレーションにつき 1 回呼び出されるデリゲート。</param>
<param name="localFinally">各タスクのローカル状態に対して最後の操作を行うデリゲート。</param>
<typeparam name="TSource">ソース内のデータの型。</typeparam>
<typeparam name="TLocal">スレッド ローカル データの型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>
<see cref="T:System.Collections.IEnumerable" /> に対して、イテレーションが並列で実行される可能性があり、ループの状態を監視および操作できる、スレッド ローカル データを持つ foreach (Visual Basic の場合は For Each) 操作を実行します。</summary>
<returns>完了したループの部分に関する情報を格納している構造。</returns>
<param name="source">列挙可能なデータ ソース。</param>
<param name="localInit">各タスクのローカル データの初期状態を返す関数デリゲート。</param>
<param name="body">1 回のイテレーションにつき 1 回呼び出されるデリゲート。</param>
<param name="localFinally">各タスクのローカル状態に対して最後の操作を行うデリゲート。</param>
<typeparam name="TSource">ソース内のデータの型。</typeparam>
<typeparam name="TLocal">スレッド ローカル データの型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0})">
<summary>
<see cref="T:System.Collections.IEnumerable" /> に対して、イテレーションが並列で実行される可能性があり、ループ オプションを構成できる foreach (Visual Basic の場合は For Each) 操作を実行します。</summary>
<returns>完了したループの部分に関する情報を格納している構造。</returns>
<param name="source">列挙可能なデータ ソース。</param>
<param name="parallelOptions">この操作の動作を構成するオブジェクト。</param>
<param name="body">1 回のイテレーションにつき 1 回呼び出されるデリゲート。</param>
<typeparam name="TSource">ソース内のデータの型。</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary>
<see cref="T:System.Collections.IEnumerable" /> に対して、イテレーションが並列で実行される可能性があり、ループ オプションを構成でき、ループの状態を監視および操作できる foreach (Visual Basic の場合は For Each) 操作を実行します。</summary>
<returns>完了したループの部分に関する情報を格納している構造。</returns>
<param name="source">列挙可能なデータ ソース。</param>
<param name="parallelOptions">この操作の動作を構成するオブジェクト。</param>
<param name="body">1 回のイテレーションにつき 1 回呼び出されるデリゲート。</param>
<typeparam name="TSource">ソース内のデータの型。</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary>
<see cref="T:System.Collections.IEnumerable" /> に対して、イテレーションが並列で実行される可能性があり、ループ オプションを構成でき、ループの状態を監視および操作できる、64 ビットのインデックスを持つ foreach (Visual Basic の場合は For Each) 操作を実行します。</summary>
<returns>完了したループの部分に関する情報を格納している構造。</returns>
<param name="source">列挙可能なデータ ソース。</param>
<param name="parallelOptions">この操作の動作を構成するオブジェクト。</param>
<param name="body">1 回のイテレーションにつき 1 回呼び出されるデリゲート。</param>
<typeparam name="TSource">ソース内のデータの型。</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>
<see cref="T:System.Collections.IEnumerable" /> に対して、イテレーションが並列で実行される可能性があり、ループ オプションを構成でき、ループの状態を監視および操作できる、スレッド ローカル データを持つ foreach (Visual Basic の場合は For Each) 操作を実行します。</summary>
<returns>完了したループの部分に関する情報を格納している構造。</returns>
<param name="source">列挙可能なデータ ソース。</param>
<param name="parallelOptions">この操作の動作を構成するオブジェクト。</param>
<param name="localInit">各タスクのローカル データの初期状態を返す関数デリゲート。</param>
<param name="body">1 回のイテレーションにつき 1 回呼び出されるデリゲート。</param>
<param name="localFinally">各タスクのローカル状態に対して最後の操作を行うデリゲート。</param>
<typeparam name="TSource">ソース内のデータの型。</typeparam>
<typeparam name="TLocal">スレッド ローカル データの型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>
<see cref="T:System.Collections.IEnumerable" /> に対して、イテレーションが並列で実行される可能性があり、ループ オプションを構成でき、ループの状態を監視および操作できる、スレッド ローカル データと 64 ビットのインデックスを持つ foreach (Visual Basic の場合は For Each) 操作を実行します。</summary>
<returns>完了したループの部分に関する情報を格納している構造。</returns>
<param name="source">列挙可能なデータ ソース。</param>
<param name="parallelOptions">この操作の動作を構成するオブジェクト。</param>
<param name="localInit">各タスクのローカル データの初期状態を返す関数デリゲート。</param>
<param name="body">1 回のイテレーションにつき 1 回呼び出されるデリゲート。</param>
<param name="localFinally">各タスクのローカル状態に対して最後の操作を行うデリゲート。</param>
<typeparam name="TSource">ソース内のデータの型。</typeparam>
<typeparam name="TLocal">スレッド ローカル データの型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.Invoke(System.Action[])">
<summary>指定された一連のアクションの各アクションを実行します (場合によっては並列で)。</summary>
<param name="actions">実行対象の <see cref="T:System.Action" /> の配列。</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="actions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that is thrown when any action in the <paramref name="actions" /> array throws an exception.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="actions" /> array contains a null element.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.Invoke(System.Threading.Tasks.ParallelOptions,System.Action[])">
<summary>操作がユーザーによって取り消されていない限り、指定された各アクションを実行します。アクションは並列で実行される可能性があります。</summary>
<param name="parallelOptions">この操作の動作を構成するオブジェクト。</param>
<param name="actions">実行対象のアクションの配列。</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> is set.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="actions" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that is thrown when any action in the <paramref name="actions" /> array throws an exception.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="actions" /> array contains a null element.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="T:System.Threading.Tasks.ParallelLoopResult">
<summary>
<see cref="T:System.Threading.Tasks.Parallel" /> ループの実行の完了ステータスを示します。</summary>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopResult.IsCompleted">
<summary>ループが完了するまで実行されたかどうか (ループのすべての反復処理が実行され、ループが途中終了要求を受け取らなかったかどうか) を示す値を取得します。</summary>
<returns>ループが完了するまで実行された場合は true。それ以外の場合は false。</returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopResult.LowestBreakIteration">
<summary>
<see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> を呼び出した反復処理のうち、最も下位の反復処理のインデックスを取得します。</summary>
<returns>Break ステートメントを呼び出した反復処理のうち、最も下位の反復処理を表す整数を返します。</returns>
</member>
<member name="T:System.Threading.Tasks.ParallelLoopState">
<summary>他のイテレーションと対話するように、並列ループのイテレーションを有効にします。このクラスのインスタンスは、<see cref="T:System.Threading.Tasks.Parallel" /> クラスから各ループに提供されるため、コードでインスタンスを作成することはできません。</summary>
</member>
<member name="M:System.Threading.Tasks.ParallelLoopState.Break">
<summary>現在のイテレーションの終了後、システムはできるだけ早く <see cref="T:System.Threading.Tasks.Parallel" /> ループの実行を終了する必要があることを通知します。</summary>
<exception cref="T:System.InvalidOperationException">
<see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" /> メソッドは既に呼び出されました。<see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /><see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" /> は、同じループのイテレーションで組み合わせて使用することはできません。</exception>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.IsExceptional">
<summary>ループのいずれかのイテレーションが、そのイテレーションによって処理されなかった例外をスローしたかどうかを示す値を取得します。</summary>
<returns>処理されない例外がスローされた場合は true。それ以外の場合は false。 </returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.IsStopped">
<summary>ループのいずれかのイテレーションが <see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" /> メソッドを呼び出したかどうかを示す値を取得します。</summary>
<returns>
<see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" /> メソッドを呼び出していずれかのイテレーションが停止した場合は true、それ以外の場合は false。</returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.LowestBreakIteration">
<summary>
<see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> を呼び出したループのイテレーションのうち、最下位のイテレーションを取得します。</summary>
<returns>
<see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> を呼び出したイテレーションのうち、最下位のイテレーション。<see cref="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Action{``0})" /> ループの場合、値は内部的に生成されたインデックスに基づきます。</returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.ShouldExitCurrentIteration">
<summary>このイテレーションまたは他のイテレーションからの要求に基づいて、ループの現在のイテレーションを終了する必要があるかどうかを示す値を取得します。</summary>
<returns>現在のイテレーションを終了する必要がある場合は true。それ以外の場合は false。</returns>
</member>
<member name="M:System.Threading.Tasks.ParallelLoopState.Stop">
<summary>システムはできるだけ早く <see cref="T:System.Threading.Tasks.Parallel" /> ループの実行を終了する必要があることを通知します。</summary>
<exception cref="T:System.InvalidOperationException">
<see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> 以前にメソッドが呼び出されました。<see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /><see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" /> は、同じループのイテレーションで組み合わせて使用することはできません。</exception>
</member>
<member name="T:System.Threading.Tasks.ParallelOptions">
<summary>
<see cref="T:System.Threading.Tasks.Parallel" /> クラスのメソッドの操作を構成するオプションを格納します。</summary>
</member>
<member name="M:System.Threading.Tasks.ParallelOptions.#ctor">
<summary>
<see cref="T:System.Threading.Tasks.ParallelOptions" /> クラスの新しいインスタンスを初期化します。</summary>
</member>
<member name="P:System.Threading.Tasks.ParallelOptions.CancellationToken">
<summary>この <see cref="T:System.Threading.Tasks.ParallelOptions" /> インスタンスに関連付けられている <see cref="T:System.Threading.CancellationToken" /> を取得または設定します。</summary>
<returns>このインスタンスに関連付けられているトークン。</returns>
</member>
<member name="P:System.Threading.Tasks.ParallelOptions.MaxDegreeOfParallelism">
<summary>
<see cref="T:System.Threading.Tasks.ParallelOptions" /> のこのインスタンスによって有効になる同時実行タスクの最大数を取得または設定します。</summary>
<returns>並列化の最大レベルを表す整数。</returns>
<exception cref="T:System.ArgumentOutOfRangeException">プロパティはゼロまたは -1 未満の値に設定されます。</exception>
</member>
<member name="P:System.Threading.Tasks.ParallelOptions.TaskScheduler">
<summary>この <see cref="T:System.Threading.Tasks.ParallelOptions" /> インスタンスに関連付けられている <see cref="T:System.Threading.Tasks.TaskScheduler" /> を取得または設定します。このプロパティを null に設定すると、現在のスケジューラが使用されます。</summary>
<returns>このインスタンスに関連付けられているタスク スケジューラ。</returns>
</member>
</members>
</doc>

View File

@@ -0,0 +1,480 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Threading.Tasks.Parallel</name>
</assembly>
<members>
<member name="T:System.Threading.Tasks.Parallel">
<summary>병렬 루프 및 영역에 대한 지원을 제공합니다.</summary>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Action{System.Int32})">
<summary>반복이 병렬로 실행될 수 있는 for(Visual Basic의 경우 For) 루프를 실행합니다.</summary>
<returns>완료된 루프의 부분에 대한 정보가 포함된 구조체입니다.</returns>
<param name="fromInclusive">시작 인덱스(포함)입니다.</param>
<param name="toExclusive">끝 인덱스(제외)입니다.</param>
<param name="body">반복당 한 번씩 호출되는 대리자입니다.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Action{System.Int32,System.Threading.Tasks.ParallelLoopState})">
<summary>반복을 병렬로 실행할 수 있고 루프 상태를 모니터링 및 조작할 수 있는 for(Visual Basic의 경우 For) 루프를 실행합니다. </summary>
<returns>완료된 루프의 부분에 대한 정보가 포함된 구조체입니다.</returns>
<param name="fromInclusive">시작 인덱스(포함)입니다.</param>
<param name="toExclusive">끝 인덱스(제외)입니다.</param>
<param name="body">반복당 한 번씩 호출되는 대리자입니다.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int32,System.Int32,System.Func{``0},System.Func{System.Int32,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>스레드 로컬 데이터를 사용하여 반복을 병렬로 실행할 수 있고 루프 상태를 모니터링 및 조작할 수 있는 for(Visual Basic의 경우 For) 루프를 실행합니다.</summary>
<returns>완료된 루프의 부분에 대한 정보가 포함된 구조체입니다.</returns>
<param name="fromInclusive">시작 인덱스(포함)입니다.</param>
<param name="toExclusive">끝 인덱스(제외)입니다.</param>
<param name="localInit">각 작업에 대한 로컬 데이터의 초기 상태를 반환하는 함수 대리자입니다.</param>
<param name="body">반복당 한 번씩 호출되는 대리자입니다.</param>
<param name="localFinally">각 작업의 로컬 상태에 대해 최종 동작을 수행하는 대리자입니다.</param>
<typeparam name="TLocal">스레드 로컬 데이터의 형식입니다.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Threading.Tasks.ParallelOptions,System.Action{System.Int32})">
<summary>반복을 병렬로 실행할 수 있고 루프 옵션을 구성할 수 있는 for(Visual Basic에서는 For) 루프를 실행합니다.</summary>
<returns>완료된 루프의 부분에 대한 정보가 포함된 구조체입니다.</returns>
<param name="fromInclusive">시작 인덱스(포함)입니다.</param>
<param name="toExclusive">끝 인덱스(제외)입니다.</param>
<param name="parallelOptions">이 작업의 동작을 구성하는 개체입니다.</param>
<param name="body">반복당 한 번씩 호출되는 대리자입니다.</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Threading.Tasks.ParallelOptions,System.Action{System.Int32,System.Threading.Tasks.ParallelLoopState})">
<summary>반복을 병렬로 실행할 수 있고 루프 옵션을 구성할 수 있으며 루프 상태를 모니터링 및 조작할 수 있는 for(Visual Basic의 경우 For) 작업을 루프를 실행합니다.</summary>
<returns>완료된 루프의 부분에 대한 정보가 포함된 구조체입니다.</returns>
<param name="fromInclusive">시작 인덱스(포함)입니다.</param>
<param name="toExclusive">끝 인덱스(제외)입니다.</param>
<param name="parallelOptions">이 작업의 동작을 구성하는 개체입니다.</param>
<param name="body">반복당 한 번씩 호출되는 대리자입니다.</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int32,System.Int32,System.Threading.Tasks.ParallelOptions,System.Func{``0},System.Func{System.Int32,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>스레드 로컬 데이터를 사용하여 반복을 병렬로 실행할 수 있고 루프 옵션을 구성할 수 있으며 루프 상태를 모니터링 및 조작할 수 있는 for(Visual Basic의 경우 For) 루프를 실행합니다.</summary>
<returns>완료된 루프의 부분에 대한 정보가 포함된 구조체입니다.</returns>
<param name="fromInclusive">시작 인덱스(포함)입니다.</param>
<param name="toExclusive">끝 인덱스(제외)입니다.</param>
<param name="parallelOptions">이 작업의 동작을 구성하는 개체입니다.</param>
<param name="localInit">각 작업에 대한 로컬 데이터의 초기 상태를 반환하는 함수 대리자입니다.</param>
<param name="body">반복당 한 번씩 호출되는 대리자입니다.</param>
<param name="localFinally">각 작업의 로컬 상태에 대해 최종 동작을 수행하는 대리자입니다.</param>
<typeparam name="TLocal">스레드 로컬 데이터의 형식입니다.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Action{System.Int64})">
<summary>64비트 인덱스를 사용하여 반복을 병렬로 실행할 수 있는 for(Visual Basic의 경우 For) 루프를 실행합니다.</summary>
<returns>완료된 루프의 부분에 대한 정보가 포함된 구조체입니다.</returns>
<param name="fromInclusive">시작 인덱스(포함)입니다.</param>
<param name="toExclusive">끝 인덱스(제외)입니다.</param>
<param name="body">반복당 한 번씩 호출되는 대리자입니다.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Action{System.Int64,System.Threading.Tasks.ParallelLoopState})">
<summary>64비트 인덱스를 사용하여 반복을 병렬로 실행할 수 있고 루프 상태를 모니터링 및 조작할 수 있는 for(Visual Basic의 경우 For) 루프를 실행합니다.</summary>
<returns>완료된 루프의 부분에 대한 정보가 포함된 <see cref="T:System.Threading.Tasks.ParallelLoopResult" /> 구조체입니다.</returns>
<param name="fromInclusive">시작 인덱스(포함)입니다.</param>
<param name="toExclusive">끝 인덱스(제외)입니다.</param>
<param name="body">반복당 한 번씩 호출되는 대리자입니다.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int64,System.Int64,System.Func{``0},System.Func{System.Int64,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>64비트 인덱스와 스레드 로컬 데이터를 사용하여 반복을 병렬로 실행할 수 있고 루프 상태를 모니터링 및 조작할 수 있는 for(Visual Basic의 경우 For) 루프를 실행합니다.</summary>
<returns>완료된 루프의 부분에 대한 정보가 포함된 구조체입니다.</returns>
<param name="fromInclusive">시작 인덱스(포함)입니다.</param>
<param name="toExclusive">끝 인덱스(제외)입니다.</param>
<param name="localInit">각 작업에 대한 로컬 데이터의 초기 상태를 반환하는 함수 대리자입니다.</param>
<param name="body">반복당 한 번씩 호출되는 대리자입니다.</param>
<param name="localFinally">각 작업의 로컬 상태에 대해 최종 동작을 수행하는 대리자입니다.</param>
<typeparam name="TLocal">스레드 로컬 데이터의 형식입니다.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Threading.Tasks.ParallelOptions,System.Action{System.Int64})">
<summary>64비트 인덱스를 사용하여 반복을 병렬로 실행할 수 있고 루프 옵션을 구성할 수 있는 for(Visual Basic의 경우 For) 루프를 실행합니다.</summary>
<returns>완료된 루프의 부분에 대한 정보가 포함된 구조체입니다.</returns>
<param name="fromInclusive">시작 인덱스(포함)입니다.</param>
<param name="toExclusive">끝 인덱스(제외)입니다.</param>
<param name="parallelOptions">이 작업의 동작을 구성하는 개체입니다.</param>
<param name="body">반복당 한 번씩 호출되는 대리자입니다.</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Threading.Tasks.ParallelOptions,System.Action{System.Int64,System.Threading.Tasks.ParallelLoopState})">
<summary>64비트 인덱스를 사용하여 반복을 병렬로 실행할 수 있고 루프 옵션을 구성할 수 있으며 루프 상태를 모니터링 및 조작할 수 있는 for(Visual Basic의 경우 For) 루프를 실행합니다.</summary>
<returns>완료된 루프의 부분에 대한 정보가 포함된 구조체입니다.</returns>
<param name="fromInclusive">시작 인덱스(포함)입니다.</param>
<param name="toExclusive">끝 인덱스(제외)입니다.</param>
<param name="parallelOptions">이 작업의 동작을 구성하는 개체입니다.</param>
<param name="body">반복당 한 번씩 호출되는 대리자입니다.</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int64,System.Int64,System.Threading.Tasks.ParallelOptions,System.Func{``0},System.Func{System.Int64,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>64비트 인덱스와 스레드 로컬 데이터를 사용하여 반복을 병렬로 실행할 수 있고 루프 옵션을 구성할 수 있으며 루프 상태를 모니터링 및 조작할 수 있는 for(Visual Basic의 경우 For) 루프를 실행합니다.</summary>
<returns>완료된 루프의 부분에 대한 정보가 포함된 구조체입니다.</returns>
<param name="fromInclusive">시작 인덱스(포함)입니다.</param>
<param name="toExclusive">끝 인덱스(제외)입니다.</param>
<param name="parallelOptions">이 작업의 동작을 구성하는 개체입니다.</param>
<param name="localInit">각 스레드에 대한 로컬 데이터의 초기 상태를 반환하는 함수 대리자입니다.</param>
<param name="body">반복당 한 번씩 호출되는 대리자입니다.</param>
<param name="localFinally">각 스레드의 로컬 상태에 대해 최종 동작을 수행하는 대리자입니다.</param>
<typeparam name="TLocal">스레드 로컬 데이터의 형식입니다.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.OrderablePartitioner{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary>반복을 병렬로 실행할 수 있고 루프 상태를 모니터링 및 조작할 수 있는 foreach(Visual Basic의 경우 For Each) 작업을 <see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" />에 대해 실행합니다.</summary>
<returns>완료된 루프의 부분에 대한 정보가 포함된 구조체입니다.</returns>
<param name="source">원래 데이터 소스가 포함된 정렬할 수 있는 파티셔너입니다.</param>
<param name="body">반복당 한 번씩 호출되는 대리자입니다.</param>
<typeparam name="TSource">
<paramref name="source" />의 요소 형식입니다.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> orderable partitioner returns false.-or-The <see cref="P:System.Collections.Concurrent.OrderablePartitioner`1.KeysNormalized" /> property in the source orderable partitioner returns false.-or-Any methods in the source orderable partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.OrderablePartitioner{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>스레드 로컬 데이터를 사용하여 반복을 병렬로 실행할 수 있고 루프 옵션을 구성할 수 있으며 루프 상태를 모니터링 및 조작할 수 있는 foreach(Visual Basic의 경우 For Each) 작업을 <see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" />에 대해 실행합니다.</summary>
<returns>완료된 루프의 부분에 대한 정보가 포함된 구조체입니다.</returns>
<param name="source">원래 데이터 소스가 포함된 정렬할 수 있는 파티셔너입니다.</param>
<param name="localInit">각 작업에 대한 로컬 데이터의 초기 상태를 반환하는 함수 대리자입니다.</param>
<param name="body">반복당 한 번씩 호출되는 대리자입니다.</param>
<param name="localFinally">각 작업의 로컬 상태에 대해 최종 동작을 수행하는 대리자입니다.</param>
<typeparam name="TSource">
<paramref name="source" />의 요소 형식입니다.</typeparam>
<typeparam name="TLocal">스레드 로컬 데이터의 형식입니다.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.OrderablePartitioner{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary>반복을 병렬로 실행할 수 있고 루프 옵션을 구성할 수 있으며 루프 상태를 모니터링 및 조작할 수 있는 foreach(Visual Basic의 경우 For Each) 작업을 <see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" />에 대해 실행합니다.</summary>
<returns>완료된 루프의 부분에 대한 정보가 포함된 구조체입니다.</returns>
<param name="source">원래 데이터 소스가 포함된 정렬할 수 있는 파티셔너입니다.</param>
<param name="parallelOptions">이 작업의 동작을 구성하는 개체입니다.</param>
<param name="body">반복당 한 번씩 호출되는 대리자입니다.</param>
<typeparam name="TSource">
<paramref name="source" />의 요소 형식입니다.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> orderable partitioner returns false.-or-The <see cref="P:System.Collections.Concurrent.OrderablePartitioner`1.KeysNormalized" /> property in the <paramref name="source" /> orderable partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> orderable partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.OrderablePartitioner{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>64비트 인덱스와 스레드 로컬 데이터를 사용하여 반복을 병렬로 실행할 수 있고 루프 옵션을 구성할 수 있으며 루프 상태를 모니터링 및 조작할 수 있는 foreach(Visual Basic의 경우 For Each) 작업을 <see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" />에 대해 실행합니다.</summary>
<returns>완료된 루프의 부분에 대한 정보가 포함된 구조체입니다.</returns>
<param name="source">원래 데이터 소스가 포함된 정렬할 수 있는 파티셔너입니다.</param>
<param name="parallelOptions">이 작업의 동작을 구성하는 개체입니다.</param>
<param name="localInit">각 작업에 대한 로컬 데이터의 초기 상태를 반환하는 함수 대리자입니다.</param>
<param name="body">반복당 한 번씩 호출되는 대리자입니다.</param>
<param name="localFinally">각 작업의 로컬 상태에 대해 최종 동작을 수행하는 대리자입니다.</param>
<typeparam name="TSource">
<paramref name="source" />의 요소 형식입니다.</typeparam>
<typeparam name="TLocal">스레드 로컬 데이터의 형식입니다.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> or <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Action{``0})">
<summary>반복이 병렬로 실행될 수 있는 foreach(Visual Basic의 경우 For Each) 작업을 <see cref="T:System.Collections.Concurrent.Partitioner" />에 대해 실행합니다.</summary>
<returns>완료된 루프의 부분에 대한 정보가 포함된 구조체입니다.</returns>
<param name="source">원래 데이터 소스가 포함된 파티셔너입니다.</param>
<param name="body">반복당 한 번씩 호출되는 대리자입니다.</param>
<typeparam name="TSource">
<paramref name="source" />의 요소 형식입니다.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> partitioner return null.-or-The <see cref="M:System.Collections.Concurrent.Partitioner`1.GetPartitions(System.Int32)" /> method in the <paramref name="source" /> partitioner does not return the correct number of partitions.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary>반복을 병렬로 실행할 수 있고 루프 상태를 모니터링 및 조작할 수 있는 foreach(Visual Basic의 경우 For Each) 작업을 <see cref="T:System.Collections.Concurrent.Partitioner" />에 대해 실행합니다.</summary>
<returns>완료된 루프의 부분에 대한 정보가 포함된 구조체입니다.</returns>
<param name="source">원래 데이터 소스가 포함된 파티셔너입니다.</param>
<param name="body">반복당 한 번씩 호출되는 대리자입니다.</param>
<typeparam name="TSource">
<paramref name="source" />의 요소 형식입니다.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-A method in the <paramref name="source" /> partitioner returns null.-or-The <see cref="M:System.Collections.Concurrent.Partitioner`1.GetPartitions(System.Int32)" /> method in the <paramref name="source" /> partitioner does not return the correct number of partitions.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.Partitioner{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>스레드 로컬 데이터를 사용하여 반복을 병렬로 실행할 수 있고 루프 상태를 모니터링 및 조작할 수 있는 foreach(Visual Basic의 경우 For Each) 작업을 <see cref="T:System.Collections.Concurrent.Partitioner" />에 대해 실행합니다.</summary>
<returns>완료된 루프의 부분에 대한 정보가 포함된 구조체입니다.</returns>
<param name="source">원래 데이터 소스가 포함된 파티셔너입니다.</param>
<param name="localInit">각 작업에 대한 로컬 데이터의 초기 상태를 반환하는 함수 대리자입니다.</param>
<param name="body">반복당 한 번씩 호출되는 대리자입니다.</param>
<param name="localFinally">각 작업의 로컬 상태에 대해 최종 동작을 수행하는 대리자입니다.</param>
<typeparam name="TSource">
<paramref name="source" />의 요소 형식입니다.</typeparam>
<typeparam name="TLocal">스레드 로컬 데이터의 형식입니다.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0})">
<summary>반복을 병렬로 실행할 수 있고 루프 옵션을 구성할 수 있는 foreach(Visual Basic의 경우 For Each) 작업을 <see cref="T:System.Collections.Concurrent.Partitioner" />에 대해 실행합니다.</summary>
<returns>완료된 루프의 부분에 대한 정보가 포함된 구조체입니다.</returns>
<param name="source">원래 데이터 소스가 포함된 파티셔너입니다.</param>
<param name="parallelOptions">이 작업의 동작을 구성하는 개체입니다.</param>
<param name="body">반복당 한 번씩 호출되는 대리자입니다.</param>
<typeparam name="TSource">
<paramref name="source" />의 요소 형식입니다.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary>반복을 병렬로 실행할 수 있고 루프 옵션을 구성할 수 있으며 루프 상태를 모니터링 및 조작할 수 있는 foreach(Visual Basic의 경우 For Each) 작업을 <see cref="T:System.Collections.Concurrent.Partitioner" />에 대해 실행합니다.</summary>
<returns>완료된 루프의 부분에 대한 정보가 포함된 구조체입니다.</returns>
<param name="source">원래 데이터 소스가 포함된 파티셔너입니다.</param>
<param name="parallelOptions">이 작업의 동작을 구성하는 개체입니다.</param>
<param name="body">반복당 한 번씩 호출되는 대리자입니다.</param>
<typeparam name="TSource">
<paramref name="source" />의 요소 형식입니다.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.Partitioner{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>스레드 로컬 데이터를 사용하여 반복을 병렬로 실행할 수 있고 루프 옵션을 구성할 수 있으며 루프 상태를 모니터링 및 조작할 수 있는 foreach(Visual Basic의 경우 For Each) 작업을 <see cref="T:System.Collections.Concurrent.Partitioner" />에 대해 실행합니다.</summary>
<returns>완료된 루프의 부분에 대한 정보가 포함된 구조체입니다.</returns>
<param name="source">원래 데이터 소스가 포함된 파티셔너입니다.</param>
<param name="parallelOptions">이 작업의 동작을 구성하는 개체입니다.</param>
<param name="localInit">각 작업에 대한 로컬 데이터의 초기 상태를 반환하는 함수 대리자입니다.</param>
<param name="body">반복당 한 번씩 호출되는 대리자입니다.</param>
<param name="localFinally">각 작업의 로컬 상태에 대해 최종 동작을 수행하는 대리자입니다.</param>
<typeparam name="TSource">
<paramref name="source" />의 요소 형식입니다.</typeparam>
<typeparam name="TLocal">스레드 로컬 데이터의 형식입니다.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0})">
<summary>반복이 병렬로 실행될 수 있는 foreach(Visual Basic의 경우 For Each) 작업을 <see cref="T:System.Collections.IEnumerable" />에 대해 실행합니다.</summary>
<returns>완료된 루프의 부분에 대한 정보가 포함된 구조체입니다.</returns>
<param name="source">열거 가능한 데이터 소스입니다.</param>
<param name="body">반복당 한 번씩 호출되는 대리자입니다.</param>
<typeparam name="TSource">소스의 데이터 형식입니다.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary>반복을 병렬로 실행할 수 있고 루프 상태를 모니터링 및 조작할 수 있는 foreach(Visual Basic의 경우 For Each) 작업을 <see cref="T:System.Collections.IEnumerable" />에 대해 실행합니다.</summary>
<returns>완료된 루프의 부분에 대한 정보가 포함된 구조체입니다.</returns>
<param name="source">열거 가능한 데이터 소스입니다.</param>
<param name="body">반복당 한 번씩 호출되는 대리자입니다.</param>
<typeparam name="TSource">소스의 데이터 형식입니다.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary>64비트 인덱스를 사용하여 반복을 병렬로 실행할 수 있고 루프 상태를 모니터링 및 조작할 수 있는 foreach(Visual Basic의 경우 For Each) 작업을 <see cref="T:System.Collections.IEnumerable" />에 대해 실행합니다.</summary>
<returns>완료된 루프의 부분에 대한 정보가 포함된 구조체입니다.</returns>
<param name="source">열거 가능한 데이터 소스입니다.</param>
<param name="body">반복당 한 번씩 호출되는 대리자입니다.</param>
<typeparam name="TSource">소스의 데이터 형식입니다.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>스레드 로컬 데이터를 사용하여 반복을 병렬로 실행할 수 있고 루프 상태를 모니터링 및 조작할 수 있는 foreach(Visual Basic의 경우 For Each) 작업을 <see cref="T:System.Collections.IEnumerable" />에 대해 실행합니다.</summary>
<returns>완료된 루프의 부분에 대한 정보가 포함된 구조체입니다.</returns>
<param name="source">열거 가능한 데이터 소스입니다.</param>
<param name="localInit">각 작업에 대한 로컬 데이터의 초기 상태를 반환하는 함수 대리자입니다.</param>
<param name="body">반복당 한 번씩 호출되는 대리자입니다.</param>
<param name="localFinally">각 작업의 로컬 상태에 대해 최종 동작을 수행하는 대리자입니다.</param>
<typeparam name="TSource">소스의 데이터 형식입니다.</typeparam>
<typeparam name="TLocal">스레드 로컬 데이터의 형식입니다.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>스레드 로컬 데이터를 사용하여 반복을 병렬로 실행할 수 있고 루프 상태를 모니터링 및 조작할 수 있는 foreach(Visual Basic의 경우 For Each) 작업을 <see cref="T:System.Collections.IEnumerable" />에 대해 실행합니다.</summary>
<returns>완료된 루프의 부분에 대한 정보가 포함된 구조체입니다.</returns>
<param name="source">열거 가능한 데이터 소스입니다.</param>
<param name="localInit">각 작업에 대한 로컬 데이터의 초기 상태를 반환하는 함수 대리자입니다.</param>
<param name="body">반복당 한 번씩 호출되는 대리자입니다.</param>
<param name="localFinally">각 작업의 로컬 상태에 대해 최종 동작을 수행하는 대리자입니다.</param>
<typeparam name="TSource">소스의 데이터 형식입니다.</typeparam>
<typeparam name="TLocal">스레드 로컬 데이터의 형식입니다.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0})">
<summary>반복을 병렬로 실행할 수 있고 루프 옵션을 구성할 수 있는 foreach(Visual Basic의 경우 For Each) 작업을 <see cref="T:System.Collections.IEnumerable" />에 대해 실행합니다.</summary>
<returns>완료된 루프의 부분에 대한 정보가 포함된 구조체입니다.</returns>
<param name="source">열거 가능한 데이터 소스입니다.</param>
<param name="parallelOptions">이 작업의 동작을 구성하는 개체입니다.</param>
<param name="body">반복당 한 번씩 호출되는 대리자입니다.</param>
<typeparam name="TSource">소스의 데이터 형식입니다.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary>반복을 병렬로 실행할 수 있고 루프 옵션을 구성할 수 있으며 루프 상태를 모니터링 및 조작할 수 있는 foreach(Visual Basic의 경우 For Each) 작업을 <see cref="T:System.Collections.IEnumerable" />에 대해 실행합니다.</summary>
<returns>완료된 루프의 부분에 대한 정보가 포함된 구조체입니다.</returns>
<param name="source">열거 가능한 데이터 소스입니다.</param>
<param name="parallelOptions">이 작업의 동작을 구성하는 개체입니다.</param>
<param name="body">반복당 한 번씩 호출되는 대리자입니다.</param>
<typeparam name="TSource">소스의 데이터 형식입니다.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary>64비트 인덱스를 사용하여 반복을 병렬로 실행할 수 있고 루프 옵션을 구성할 수 있으며 루프 상태를 모니터링 및 조작할 수 있는 foreach(Visual Basic의 경우 For Each) 작업을 <see cref="T:System.Collections.IEnumerable" />에 대해 실행합니다.</summary>
<returns>완료된 루프의 부분에 대한 정보가 포함된 구조체입니다.</returns>
<param name="source">열거 가능한 데이터 소스입니다.</param>
<param name="parallelOptions">이 작업의 동작을 구성하는 개체입니다.</param>
<param name="body">반복당 한 번씩 호출되는 대리자입니다.</param>
<typeparam name="TSource">소스의 데이터 형식입니다.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>스레드 로컬 데이터를 사용하여 반복을 병렬로 실행할 수 있고 루프 옵션을 구성할 수 있으며 루프 상태를 모니터링 및 조작할 수 있는 foreach(Visual Basic의 경우 For Each) 작업을 <see cref="T:System.Collections.IEnumerable" />에 대해 실행합니다.</summary>
<returns>완료된 루프의 부분에 대한 정보가 포함된 구조체입니다.</returns>
<param name="source">열거 가능한 데이터 소스입니다.</param>
<param name="parallelOptions">이 작업의 동작을 구성하는 개체입니다.</param>
<param name="localInit">각 작업에 대한 로컬 데이터의 초기 상태를 반환하는 함수 대리자입니다.</param>
<param name="body">반복당 한 번씩 호출되는 대리자입니다.</param>
<param name="localFinally">각 작업의 로컬 상태에 대해 최종 동작을 수행하는 대리자입니다.</param>
<typeparam name="TSource">소스의 데이터 형식입니다.</typeparam>
<typeparam name="TLocal">스레드 로컬 데이터의 형식입니다.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>스레드 로컬 데이터와 64비트 인덱스를 사용하여 반복을 병렬로 실행할 수 있고 루프 옵션을 구성할 수 있으며 루프 상태를 모니터링 및 조작할 수 있는 foreach(Visual Basic의 경우 For Each) 작업을 <see cref="T:System.Collections.IEnumerable" />에 대해 실행합니다.</summary>
<returns>완료된 루프의 부분에 대한 정보가 포함된 구조체입니다.</returns>
<param name="source">열거 가능한 데이터 소스입니다.</param>
<param name="parallelOptions">이 작업의 동작을 구성하는 개체입니다.</param>
<param name="localInit">각 작업에 대한 로컬 데이터의 초기 상태를 반환하는 함수 대리자입니다.</param>
<param name="body">반복당 한 번씩 호출되는 대리자입니다.</param>
<param name="localFinally">각 작업의 로컬 상태에 대해 최종 동작을 수행하는 대리자입니다.</param>
<typeparam name="TSource">소스의 데이터 형식입니다.</typeparam>
<typeparam name="TLocal">스레드 로컬 데이터의 형식입니다.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.Invoke(System.Action[])">
<summary>각각의 제공된 동작을 가능하면 병렬로 실행합니다.</summary>
<param name="actions">실행할 <see cref="T:System.Action" />의 배열입니다.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="actions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that is thrown when any action in the <paramref name="actions" /> array throws an exception.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="actions" /> array contains a null element.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.Invoke(System.Threading.Tasks.ParallelOptions,System.Action[])">
<summary>사용자가 작업을 취소하지 않는다면 제공된 각 작업을 가능한 한 병렬로 실행합니다.</summary>
<param name="parallelOptions">이 작업의 동작을 구성하는 개체입니다.</param>
<param name="actions">실행할 동작의 배열입니다.</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> is set.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="actions" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that is thrown when any action in the <paramref name="actions" /> array throws an exception.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="actions" /> array contains a null element.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="T:System.Threading.Tasks.ParallelLoopResult">
<summary>
<see cref="T:System.Threading.Tasks.Parallel" /> 루프의 실행에 대한 완료 상태를 제공합니다.</summary>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopResult.IsCompleted">
<summary>루프 실행이 완료되어 루프의 모든 반복이 실행되었고 루프가 중간에 끝나도록 요청을 받지 않았는지 여부를 가져옵니다.</summary>
<returns>루프 실행이 완료되었으면 true이고, 그렇지 않으면 false입니다.</returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopResult.LowestBreakIteration">
<summary>
<see cref="M:System.Threading.Tasks.ParallelLoopState.Break" />가 호출된 가장 낮은 반복의 인덱스를 가져옵니다.</summary>
<returns>Break 문이 호출된 가장 낮은 반복을 나타내는 정수를 반환합니다.</returns>
</member>
<member name="T:System.Threading.Tasks.ParallelLoopState">
<summary>병렬 루프의 반복이 다른 반복과 상호 작용하도록 합니다.이 클래스의 인스턴스는 <see cref="T:System.Threading.Tasks.Parallel" /> 클래스에 의해 각 루프에 제공됩니다. 사용자 코드에 인스턴스를 만들 수는 없습니다.</summary>
</member>
<member name="M:System.Threading.Tasks.ParallelLoopState.Break">
<summary>현재 반복 이외에 시스템에서 편의상 빨리 수행하는 반복에서 <see cref="T:System.Threading.Tasks.Parallel" /> 루프의 반복 실행이 중단되도록 통신합니다. </summary>
<exception cref="T:System.InvalidOperationException">
<see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" /> 메서드가 이미 호출된 경우<see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /><see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" />은 동일한 루프의 반복을 조합하여 사용할 수 없습니다.</exception>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.IsExceptional">
<summary>루프 반복이 해당 반복에서 처리되지 않은 예외를 throw했는지 여부를 가져옵니다. </summary>
<returns>처리되지 않은 예외를 throw했으면 true이고, 그렇지 않으면 false입니다. </returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.IsStopped">
<summary>루프 반복에서 <see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" /> 메서드를 호출했는지 여부를 가져옵니다. </summary>
<returns>
<see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" /> 메서드를 호출하여 반복에서 루프를 중지했으면 true이고, 그렇지 않으면 false입니다. </returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.LowestBreakIteration">
<summary>
<see cref="M:System.Threading.Tasks.ParallelLoopState.Break" />이 호출된 루프의 가장 낮은 반복을 가져옵니다. </summary>
<returns>
<see cref="M:System.Threading.Tasks.ParallelLoopState.Break" />이 호출된 가장 낮은 반복입니다.<see cref="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Action{``0})" /> 루프의 경우 값은 내부에서 생성된 인덱스를 기반으로 합니다.</returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.ShouldExitCurrentIteration">
<summary>루프의 현재 반복이 해당 반복 또는 다른 반복에서 수행한 요청에 따라 종료되어야 하는지 여부를 가져옵니다.</summary>
<returns>현재 반복이 종료되어야 하면 true이고, 그렇지 않으면 false입니다. </returns>
</member>
<member name="M:System.Threading.Tasks.ParallelLoopState.Stop">
<summary>시스템에서 편의상 빨리 수행하는 반복에서 <see cref="T:System.Threading.Tasks.Parallel" /> 루프의 실행이 중단되도록 통신합니다.</summary>
<exception cref="T:System.InvalidOperationException">
<see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> 메서드가 이미 호출 되었습니다.<see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /><see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" />은 동일한 루프의 반복을 조합하여 사용할 수 없습니다.</exception>
</member>
<member name="T:System.Threading.Tasks.ParallelOptions">
<summary>
<see cref="T:System.Threading.Tasks.Parallel" /> 클래스의 메서드 작업을 구성하는 옵션을 저장합니다.</summary>
</member>
<member name="M:System.Threading.Tasks.ParallelOptions.#ctor">
<summary>
<see cref="T:System.Threading.Tasks.ParallelOptions" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
</member>
<member name="P:System.Threading.Tasks.ParallelOptions.CancellationToken">
<summary><see cref="T:System.Threading.Tasks.ParallelOptions" /> 인스턴스와 연결된 <see cref="T:System.Threading.CancellationToken" />를 가져오거나 설정합니다.</summary>
<returns>이 인스턴스에 연결된 토큰입니다.</returns>
</member>
<member name="P:System.Threading.Tasks.ParallelOptions.MaxDegreeOfParallelism">
<summary><see cref="T:System.Threading.Tasks.ParallelOptions" /> 인스턴스에서 사용되는 동시 작업의 최대 수를 가져오거나 설정합니다.</summary>
<returns>병렬 처리의 최대 수준을 나타내는 정수입니다.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">속성을 0 또는 -1보다 작은 값으로 설정하는 경우 입니다.</exception>
</member>
<member name="P:System.Threading.Tasks.ParallelOptions.TaskScheduler">
<summary><see cref="T:System.Threading.Tasks.ParallelOptions" /> 인스턴스와 연결된 <see cref="T:System.Threading.Tasks.TaskScheduler" />를 가져오거나 설정합니다.이 속성을 null로 설정하면 현재 스케줄러가 사용됨을 나타냅니다.</summary>
<returns>이 인스턴스에 연결된 작업 스케줄러입니다.</returns>
</member>
</members>
</doc>

View File

@@ -0,0 +1,462 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Threading.Tasks.Parallel</name>
</assembly>
<members>
<member name="T:System.Threading.Tasks.Parallel">
<summary>Предоставляет поддержку параллельных циклов и областей.</summary>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Action{System.Int32})">
<summary>Выполняет цикл for (For в Visual Basic), обеспечивая возможность параллельного выполнения итераций.</summary>
<returns>Структура, в которой содержатся сведения о выполненной части цикла.</returns>
<param name="fromInclusive">Начальный индекс, включительно.</param>
<param name="toExclusive">Конечный индекс, не включительно.</param>
<param name="body">Делегат, который вызывается один раз за итерацию.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Action{System.Int32,System.Threading.Tasks.ParallelLoopState})">
<summary>Выполняет цикл for (For в Visual Basic), обеспечивая возможность параллельного выполнения итераций, а также контроля состояния цикла и управления этим состоянием. </summary>
<returns>Структура, в которой содержатся сведения о выполненной части цикла.</returns>
<param name="fromInclusive">Начальный индекс, включительно.</param>
<param name="toExclusive">Конечный индекс, не включительно.</param>
<param name="body">Делегат, который вызывается один раз за итерацию.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int32,System.Int32,System.Func{``0},System.Func{System.Int32,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>Выполняет цикл for (For в Visual Basic) с локальными данными потока, обеспечивая возможность параллельного выполнения итераций, а также контроля состояния цикла и управления этим состоянием.</summary>
<returns>Структура, в которой содержатся сведения о выполненной части цикла.</returns>
<param name="fromInclusive">Начальный индекс, включительно.</param>
<param name="toExclusive">Конечный индекс, не включительно.</param>
<param name="localInit">Делегат функции, который возвращает начальное состояние локальных данных для каждой задачи.</param>
<param name="body">Делегат, который вызывается один раз за итерацию.</param>
<param name="localFinally">Делегат, который выполняет финальное действие с локальным состоянием каждой задачи.</param>
<typeparam name="TLocal">Тип данных, локальных для потока.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Threading.Tasks.ParallelOptions,System.Action{System.Int32})">
<summary>Выполняет цикл for (For в Visual Basic), обеспечивая возможность параллельного выполнения итераций и настройки параметров цикла.</summary>
<returns>Структура, в которой содержатся сведения о выполненной части цикла.</returns>
<param name="fromInclusive">Начальный индекс, включительно.</param>
<param name="toExclusive">Конечный индекс, не включительно.</param>
<param name="parallelOptions">Объект, используемый для настройки поведения этой операции.</param>
<param name="body">Делегат, который вызывается один раз за итерацию.</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Threading.Tasks.ParallelOptions,System.Action{System.Int32,System.Threading.Tasks.ParallelLoopState})">
<summary>Выполняет цикл for (For в Visual Basic), обеспечивая возможность параллельного выполнения итераций, настройки параметров цикла, а также контроля состояния цикла и управления этим состоянием.</summary>
<returns>Структура, в которой содержатся сведения о выполненной части цикла.</returns>
<param name="fromInclusive">Начальный индекс, включительно.</param>
<param name="toExclusive">Конечный индекс, не включительно.</param>
<param name="parallelOptions">Объект, используемый для настройки поведения этой операции.</param>
<param name="body">Делегат, который вызывается один раз за итерацию.</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int32,System.Int32,System.Threading.Tasks.ParallelOptions,System.Func{``0},System.Func{System.Int32,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>Выполняет цикл for (For в Visual Basic) с локальными данными потока, обеспечивая возможность параллельного выполнения итераций, настройки параметров цикла, а также контроля состояния цикла и управления этим состоянием.</summary>
<returns>Структура, в которой содержатся сведения о выполненной части цикла.</returns>
<param name="fromInclusive">Начальный индекс, включительно.</param>
<param name="toExclusive">Конечный индекс, не включительно.</param>
<param name="parallelOptions">Объект, используемый для настройки поведения этой операции.</param>
<param name="localInit">Делегат функции, который возвращает начальное состояние локальных данных для каждой задачи.</param>
<param name="body">Делегат, который вызывается один раз за итерацию.</param>
<param name="localFinally">Делегат, который выполняет финальное действие с локальным состоянием каждой задачи.</param>
<typeparam name="TLocal">Тип данных, локальных для потока.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Action{System.Int64})">
<summary>Выполняет цикл for (For в Visual Basic) с 64-разрядными индексами, в котором итерации могут выполняться параллельно.</summary>
<returns>Структура, в которой содержатся сведения о выполненной части цикла.</returns>
<param name="fromInclusive">Начальный индекс, включительно.</param>
<param name="toExclusive">Конечный индекс, не включительно.</param>
<param name="body">Делегат, который вызывается один раз за итерацию.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Action{System.Int64,System.Threading.Tasks.ParallelLoopState})">
<summary>Выполняет цикл for (For в Visual Basic) с 64-разрядными индексами, обеспечивая возможность параллельного выполнения итераций, а также контроля состояния цикла и управления этим состоянием.</summary>
<returns>Структура <see cref="T:System.Threading.Tasks.ParallelLoopResult" />, в которой содержатся сведения о выполненной части цикла.</returns>
<param name="fromInclusive">Начальный индекс, включительно.</param>
<param name="toExclusive">Конечный индекс, не включительно.</param>
<param name="body">Делегат, который вызывается один раз за итерацию.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int64,System.Int64,System.Func{``0},System.Func{System.Int64,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>Выполняет цикл for (For в Visual Basic) с 64-разрядными индексами и локальными данными потока, обеспечивая возможность параллельного выполнения итераций, а также контроля состояния цикла и управления этим состоянием.</summary>
<returns>Структура, в которой содержатся сведения о выполненной части цикла.</returns>
<param name="fromInclusive">Начальный индекс, включительно.</param>
<param name="toExclusive">Конечный индекс, не включительно.</param>
<param name="localInit">Делегат функции, который возвращает начальное состояние локальных данных для каждой задачи.</param>
<param name="body">Делегат, который вызывается один раз за итерацию.</param>
<param name="localFinally">Делегат, который выполняет финальное действие с локальным состоянием каждой задачи.</param>
<typeparam name="TLocal">Тип данных, локальных для потока.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Threading.Tasks.ParallelOptions,System.Action{System.Int64})">
<summary>Выполняет цикл for (For в Visual Basic) с 64-разрядными индексами, обеспечивая возможность параллельного выполнения итераций и настройки параметров цикла.</summary>
<returns>Структура, в которой содержатся сведения о выполненной части цикла.</returns>
<param name="fromInclusive">Начальный индекс, включительно.</param>
<param name="toExclusive">Конечный индекс, не включительно.</param>
<param name="parallelOptions">Объект, используемый для настройки поведения этой операции.</param>
<param name="body">Делегат, который вызывается один раз за итерацию.</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Threading.Tasks.ParallelOptions,System.Action{System.Int64,System.Threading.Tasks.ParallelLoopState})">
<summary>Выполняет цикл for (For в Visual Basic) с 64-разрядными индексами, обеспечивая возможность параллельного выполнения итераций, настройки параметров цикла, а также контроля состояния цикла и управления этим состоянием.</summary>
<returns>Структура, в которой содержатся сведения о выполненной части цикла.</returns>
<param name="fromInclusive">Начальный индекс, включительно.</param>
<param name="toExclusive">Конечный индекс, не включительно.</param>
<param name="parallelOptions">Объект, используемый для настройки поведения этой операции.</param>
<param name="body">Делегат, который вызывается один раз за итерацию.</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int64,System.Int64,System.Threading.Tasks.ParallelOptions,System.Func{``0},System.Func{System.Int64,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>Выполняет цикл for (For в Visual Basic) с 64-разрядными индексами и локальными данными потока, обеспечивая возможность параллельного выполнения итераций, настройки параметров цикла, а также контроля состояния цикла и управления этим состоянием.</summary>
<returns>Структура, в которой содержатся сведения о выполненной части цикла.</returns>
<param name="fromInclusive">Начальный индекс, включительно.</param>
<param name="toExclusive">Конечный индекс, не включительно.</param>
<param name="parallelOptions">Объект, используемый для настройки поведения этой операции.</param>
<param name="localInit">Делегат функции, который возвращает начальное состояние локальных данных для каждого потока.</param>
<param name="body">Делегат, который вызывается один раз за итерацию.</param>
<param name="localFinally">Делегат, который выполняет финальное действие с локальным состоянием каждого потока.</param>
<typeparam name="TLocal">Тип данных, локальных для потока.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.OrderablePartitioner{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary>Выполняет операцию foreach (For Each в Visual Basic) для объекта <see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" />, обеспечивая возможность параллельного выполнения итераций, а также контроля состояния цикла и управления этим состоянием.</summary>
<returns>Структура, в которой содержатся сведения о выполненной части цикла.</returns>
<param name="source">Упорядочиваемый разделитель, содержащий исходный источник данных.</param>
<param name="body">Делегат, который вызывается один раз за итерацию.</param>
<typeparam name="TSource">Тип элементов в объекте <paramref name="source" />.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> orderable partitioner returns false.-or-The <see cref="P:System.Collections.Concurrent.OrderablePartitioner`1.KeysNormalized" /> property in the source orderable partitioner returns false.-or-Any methods in the source orderable partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.OrderablePartitioner{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>Выполняет операцию foreach (For Each в Visual Basic) с локальными данными потока для объекта <see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" />, обеспечивая возможность параллельного выполнения итераций, настройки параметров цикла, а также контроля состояния цикла и управления этим состоянием.</summary>
<returns>Структура, в которой содержатся сведения о выполненной части цикла.</returns>
<param name="source">Упорядочиваемый разделитель, содержащий исходный источник данных.</param>
<param name="localInit">Делегат функции, который возвращает начальное состояние локальных данных для каждой задачи.</param>
<param name="body">Делегат, который вызывается один раз за итерацию.</param>
<param name="localFinally">Делегат, который выполняет финальное действие с локальным состоянием каждой задачи.</param>
<typeparam name="TSource">Тип элементов в объекте <paramref name="source" />.</typeparam>
<typeparam name="TLocal">Тип данных, локальных для потока.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.OrderablePartitioner{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary>Выполняет операцию foreach (For Each в Visual Basic) для объекта <see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" />, обеспечивая возможность параллельного выполнения итераций, настройки параметров цикла, а также контроля состояния цикла и управления этим состоянием.</summary>
<returns>Структура, в которой содержатся сведения о выполненной части цикла.</returns>
<param name="source">Упорядочиваемый разделитель, содержащий исходный источник данных.</param>
<param name="parallelOptions">Объект, используемый для настройки поведения этой операции.</param>
<param name="body">Делегат, который вызывается один раз за итерацию.</param>
<typeparam name="TSource">Тип элементов в объекте <paramref name="source" />.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> orderable partitioner returns false.-or-The <see cref="P:System.Collections.Concurrent.OrderablePartitioner`1.KeysNormalized" /> property in the <paramref name="source" /> orderable partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> orderable partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.OrderablePartitioner{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>Выполняет операцию foreach (For Each в Visual Basic) с 64-разрядными индексами и локальными данными потока для объекта <see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" />, обеспечивая возможность параллельного выполнения итераций, настройки параметров цикла, а также контроля состояния цикла и управления этим состоянием.</summary>
<returns>Структура, в которой содержатся сведения о выполненной части цикла.</returns>
<param name="source">Упорядочиваемый разделитель, содержащий исходный источник данных.</param>
<param name="parallelOptions">Объект, используемый для настройки поведения этой операции.</param>
<param name="localInit">Делегат функции, который возвращает начальное состояние локальных данных для каждой задачи.</param>
<param name="body">Делегат, который вызывается один раз за итерацию.</param>
<param name="localFinally">Делегат, который выполняет финальное действие с локальным состоянием каждой задачи.</param>
<typeparam name="TSource">Тип элементов в объекте <paramref name="source" />.</typeparam>
<typeparam name="TLocal">Тип данных, локальных для потока.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> or <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Action{``0})">
<summary>Выполняет операцию foreach (For Each в Visual Basic) для объекта <see cref="T:System.Collections.Concurrent.Partitioner" />, обеспечивая возможность параллельного выполнения итераций.</summary>
<returns>Структура, в которой содержатся сведения о выполненной части цикла.</returns>
<param name="source">Разделитель, содержащий исходный источник данных.</param>
<param name="body">Делегат, который вызывается один раз за итерацию.</param>
<typeparam name="TSource">Тип элементов в объекте <paramref name="source" />.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> partitioner return null.-or-The <see cref="M:System.Collections.Concurrent.Partitioner`1.GetPartitions(System.Int32)" /> method in the <paramref name="source" /> partitioner does not return the correct number of partitions.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary>Выполняет операцию foreach (For Each в Visual Basic) для объекта <see cref="T:System.Collections.Concurrent.Partitioner" />, обеспечивая возможность параллельного выполнения итераций, а также контроля состояния цикла и управления этим состоянием.</summary>
<returns>Структура, в которой содержатся сведения о выполненной части цикла.</returns>
<param name="source">Разделитель, содержащий исходный источник данных.</param>
<param name="body">Делегат, который вызывается один раз за итерацию.</param>
<typeparam name="TSource">Тип элементов в объекте <paramref name="source" />.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-A method in the <paramref name="source" /> partitioner returns null.-or-The <see cref="M:System.Collections.Concurrent.Partitioner`1.GetPartitions(System.Int32)" /> method in the <paramref name="source" /> partitioner does not return the correct number of partitions.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.Partitioner{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>Выполняет операцию foreach (For Each в Visual Basic) с локальными данными потока для объекта <see cref="T:System.Collections.Concurrent.Partitioner" />, обеспечивая возможность параллельного выполнения итераций, а также контроля состояния цикла и управления этим состоянием.</summary>
<returns>Структура, в которой содержатся сведения о выполненной части цикла.</returns>
<param name="source">Разделитель, содержащий исходный источник данных.</param>
<param name="localInit">Делегат функции, который возвращает начальное состояние локальных данных для каждой задачи.</param>
<param name="body">Делегат, который вызывается один раз за итерацию.</param>
<param name="localFinally">Делегат, который выполняет финальное действие с локальным состоянием каждой задачи.</param>
<typeparam name="TSource">Тип элементов в объекте <paramref name="source" />.</typeparam>
<typeparam name="TLocal">Тип данных, локальных для потока.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0})">
<summary>Выполняет операцию foreach (For Each в Visual Basic) для объекта <see cref="T:System.Collections.Concurrent.Partitioner" />, обеспечивая возможность параллельного выполнения итераций и настройки параметров цикла.</summary>
<returns>Структура, в которой содержатся сведения о выполненной части цикла.</returns>
<param name="source">Разделитель, содержащий исходный источник данных.</param>
<param name="parallelOptions">Объект, используемый для настройки поведения этой операции.</param>
<param name="body">Делегат, который вызывается один раз за итерацию.</param>
<typeparam name="TSource">Тип элементов в объекте <paramref name="source" />.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary>Выполняет операцию foreach (For Each в Visual Basic) для объекта <see cref="T:System.Collections.Concurrent.Partitioner" />, обеспечивая возможность параллельного выполнения итераций, настройки параметров цикла, а также контроля состояния цикла и управления этим состоянием.</summary>
<returns>Структура, в которой содержатся сведения о выполненной части цикла.</returns>
<param name="source">Разделитель, содержащий исходный источник данных.</param>
<param name="parallelOptions">Объект, используемый для настройки поведения этой операции.</param>
<param name="body">Делегат, который вызывается один раз за итерацию.</param>
<typeparam name="TSource">Тип элементов в объекте <paramref name="source" />.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.Partitioner{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>Выполняет операцию foreach (For Each в Visual Basic) с локальными данными потока для объекта <see cref="T:System.Collections.Concurrent.Partitioner" />, обеспечивая возможность параллельного выполнения итераций, настройки параметров цикла, а также контроля состояния цикла и управления этим состоянием.</summary>
<returns>Структура, в которой содержатся сведения о выполненной части цикла.</returns>
<param name="source">Разделитель, содержащий исходный источник данных.</param>
<param name="parallelOptions">Объект, используемый для настройки поведения этой операции.</param>
<param name="localInit">Делегат функции, который возвращает начальное состояние локальных данных для каждой задачи.</param>
<param name="body">Делегат, который вызывается один раз за итерацию.</param>
<param name="localFinally">Делегат, который выполняет финальное действие с локальным состоянием каждой задачи.</param>
<typeparam name="TSource">Тип элементов в объекте <paramref name="source" />.</typeparam>
<typeparam name="TLocal">Тип данных, локальных для потока.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0})">
<summary>Выполняет операцию foreach (For Each в Visual Basic) для объекта <see cref="T:System.Collections.IEnumerable" />, обеспечивая возможность параллельного выполнения итераций.</summary>
<returns>Структура, в которой содержатся сведения о выполненной части цикла.</returns>
<param name="source">Перечислимый источник данных.</param>
<param name="body">Делегат, который вызывается один раз за итерацию.</param>
<typeparam name="TSource">Тип данных в источнике.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary>Выполняет операцию foreach (For Each в Visual Basic) для объекта <see cref="T:System.Collections.IEnumerable" />, обеспечивая возможность параллельного выполнения итераций, а также контроля состояния цикла и управления этим состоянием.</summary>
<returns>Структура, в которой содержатся сведения о выполненной части цикла.</returns>
<param name="source">Перечислимый источник данных.</param>
<param name="body">Делегат, который вызывается один раз за итерацию.</param>
<typeparam name="TSource">Тип данных в источнике.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary>Выполняет операцию foreach (For Each в Visual Basic) с 64-разрядными индексами для объекта <see cref="T:System.Collections.IEnumerable" />, обеспечивая возможность параллельного выполнения итераций, а также контроля состояния цикла и управления этим состоянием.</summary>
<returns>Структура, в которой содержатся сведения о выполненной части цикла.</returns>
<param name="source">Перечислимый источник данных.</param>
<param name="body">Делегат, который вызывается один раз за итерацию.</param>
<typeparam name="TSource">Тип данных в источнике.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>Выполняет операцию foreach (For Each в Visual Basic) с локальными данными потока для объекта <see cref="T:System.Collections.IEnumerable" />, обеспечивая возможность параллельного выполнения итераций, а также контроля состояния цикла и управления этим состоянием.</summary>
<returns>Структура, в которой содержатся сведения о выполненной части цикла.</returns>
<param name="source">Перечислимый источник данных.</param>
<param name="localInit">Делегат функции, который возвращает начальное состояние локальных данных для каждой задачи.</param>
<param name="body">Делегат, который вызывается один раз за итерацию.</param>
<param name="localFinally">Делегат, который выполняет финальное действие с локальным состоянием каждой задачи.</param>
<typeparam name="TSource">Тип данных в источнике.</typeparam>
<typeparam name="TLocal">Тип данных, локальных для потока.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>Выполняет операцию foreach (For Each в Visual Basic) с локальными данными потока для объекта <see cref="T:System.Collections.IEnumerable" />, обеспечивая возможность параллельного выполнения итераций, а также контроля состояния цикла и управления этим состоянием.</summary>
<returns>Структура, в которой содержатся сведения о выполненной части цикла.</returns>
<param name="source">Перечислимый источник данных.</param>
<param name="localInit">Делегат функции, который возвращает начальное состояние локальных данных для каждой задачи.</param>
<param name="body">Делегат, который вызывается один раз за итерацию.</param>
<param name="localFinally">Делегат, который выполняет финальное действие с локальным состоянием каждой задачи.</param>
<typeparam name="TSource">Тип данных в источнике.</typeparam>
<typeparam name="TLocal">Тип данных, локальных для потока.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0})">
<summary>Выполняет операцию foreach (For Each в Visual Basic) для объекта <see cref="T:System.Collections.IEnumerable" />, обеспечивая возможность параллельного выполнения итераций и настройки параметров цикла.</summary>
<returns>Структура, в которой содержатся сведения о выполненной части цикла.</returns>
<param name="source">Перечислимый источник данных.</param>
<param name="parallelOptions">Объект, используемый для настройки поведения этой операции.</param>
<param name="body">Делегат, который вызывается один раз за итерацию.</param>
<typeparam name="TSource">Тип данных в источнике.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary>Выполняет операцию foreach (For Each в Visual Basic) для объекта <see cref="T:System.Collections.IEnumerable" />, обеспечивая возможность параллельного выполнения итераций, настройки параметров цикла, а также контроля состояния цикла и управления этим состоянием.</summary>
<returns>Структура, в которой содержатся сведения о выполненной части цикла.</returns>
<param name="source">Перечислимый источник данных.</param>
<param name="parallelOptions">Объект, используемый для настройки поведения этой операции.</param>
<param name="body">Делегат, который вызывается один раз за итерацию.</param>
<typeparam name="TSource">Тип данных в источнике.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary>Выполняет операцию foreach (For Each в Visual Basic) с 64-разрядными индексами для объекта <see cref="T:System.Collections.IEnumerable" />, обеспечивая возможность параллельного выполнения итераций, настройки параметров цикла, а также контроля состояния цикла и управления этим состоянием.</summary>
<returns>Структура, в которой содержатся сведения о выполненной части цикла.</returns>
<param name="source">Перечислимый источник данных.</param>
<param name="parallelOptions">Объект, используемый для настройки поведения этой операции.</param>
<param name="body">Делегат, который вызывается один раз за итерацию.</param>
<typeparam name="TSource">Тип данных в источнике.</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>Выполняет операцию foreach (For Each в Visual Basic) с локальными данными потока для объекта <see cref="T:System.Collections.IEnumerable" />, обеспечивая возможность параллельного выполнения итераций, настройки параметров цикла, а также контроля состояния цикла и управления этим состоянием.</summary>
<returns>Структура, в которой содержатся сведения о выполненной части цикла.</returns>
<param name="source">Перечислимый источник данных.</param>
<param name="parallelOptions">Объект, используемый для настройки поведения этой операции.</param>
<param name="localInit">Делегат функции, который возвращает начальное состояние локальных данных для каждой задачи.</param>
<param name="body">Делегат, который вызывается один раз за итерацию.</param>
<param name="localFinally">Делегат, который выполняет финальное действие с локальным состоянием каждой задачи.</param>
<typeparam name="TSource">Тип данных в источнике.</typeparam>
<typeparam name="TLocal">Тип данных, локальных для потока.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>Выполняет операцию foreach (For Each в Visual Basic) с 64-разрядными индексами и локальными данными потока для объекта <see cref="T:System.Collections.IEnumerable" />, обеспечивая возможность параллельного выполнения итераций, настройки параметров цикла, а также контроля состояния цикла и управления этим состоянием.</summary>
<returns>Структура, в которой содержатся сведения о выполненной части цикла.</returns>
<param name="source">Перечислимый источник данных.</param>
<param name="parallelOptions">Объект, используемый для настройки поведения этой операции.</param>
<param name="localInit">Делегат функции, который возвращает начальное состояние локальных данных для каждой задачи.</param>
<param name="body">Делегат, который вызывается один раз за итерацию.</param>
<param name="localFinally">Делегат, который выполняет финальное действие с локальным состоянием каждой задачи.</param>
<typeparam name="TSource">Тип данных в источнике.</typeparam>
<typeparam name="TLocal">Тип данных, локальных для потока.</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.Invoke(System.Action[])">
<summary>Выполняет все предоставленные действия, по возможности в параллельном режиме.</summary>
<param name="actions">Массив действий <see cref="T:System.Action" /> для выполнения.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="actions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that is thrown when any action in the <paramref name="actions" /> array throws an exception.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="actions" /> array contains a null element.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.Invoke(System.Threading.Tasks.ParallelOptions,System.Action[])">
<summary>Выполняет каждое из указанных действий по возможности в параллельном режиме, если операция не отменена пользователем.</summary>
<param name="parallelOptions">Объект, используемый для настройки поведения этой операции.</param>
<param name="actions">Массив действий для выполнения.</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> is set.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="actions" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that is thrown when any action in the <paramref name="actions" /> array throws an exception.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="actions" /> array contains a null element.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="T:System.Threading.Tasks.ParallelLoopResult">
<summary>Предоставляет состояние выполнения цикла <see cref="T:System.Threading.Tasks.Parallel" />.</summary>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopResult.IsCompleted">
<summary>Получает значение, указывающее, дошел ли цикл до завершения, то есть все итерации цикла выполнены и он не получил запроса на преждевременное прерывание работы.</summary>
<returns>Значение true, если цикл был завершен; в противном случае — значение false.</returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopResult.LowestBreakIteration">
<summary>Получает индекс нижней итерации, из которой был вызван метод <see cref="M:System.Threading.Tasks.ParallelLoopState.Break" />.</summary>
<returns>Возвращает целое число, представляющее самую нижнюю итерацию, из которой был вызван оператор Break.</returns>
</member>
<member name="T:System.Threading.Tasks.ParallelLoopState">
<summary>Позволяет итерациям параллельных циклов взаимодействовать с другими итерациями.Экземпляр этого класса предоставляется каждому циклу классом <see cref="T:System.Threading.Tasks.Parallel" />; невозможно создавать экземпляры в коде.</summary>
</member>
<member name="M:System.Threading.Tasks.ParallelLoopState.Break">
<summary>Сообщает, что цикл <see cref="T:System.Threading.Tasks.Parallel" /> должен прекратить выполнение итераций после текущей в первый удобный для системы момент. </summary>
<exception cref="T:System.InvalidOperationException">Был ранее вызван метод <see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" />.<see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> и <see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" /> не могут использоваться в сочетании итерациями одного и того же цикла.</exception>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.IsExceptional">
<summary>Получает значение, указывающее, возникло ли в какой-либо итерации цикла исключение, не обработанное данной итерацией. </summary>
<returns>Значение true, если было вызвано необработанное исключение; в противном случае — значение false. </returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.IsStopped">
<summary>Получает значение, указывающее, вызывала ли какая-либо итерация цикла метод <see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" />. </summary>
<returns>Значение true, если какая-либо итерация остановила цикл, вызвав метод <see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" />; в противном случае — значение false. </returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.LowestBreakIteration">
<summary>Получает первую итерацию цикла, из которой был вызван метод <see cref="M:System.Threading.Tasks.ParallelLoopState.Break" />. </summary>
<returns>Получает первую итерацию, из которой был вызван метод <see cref="M:System.Threading.Tasks.ParallelLoopState.Break" />.В случае цикла <see cref="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Action{``0})" /> значение основано на внутренне создаваемом индексе.</returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.ShouldExitCurrentIteration">
<summary>Получает значение, указывающее, следует ли текущей итерации цикла завершить работу на основе запросов от этой или других итераций.</summary>
<returns>Значение true, если текущая итерация должна завершать работу; в противном случае — значение false. </returns>
</member>
<member name="M:System.Threading.Tasks.ParallelLoopState.Stop">
<summary>Сообщает, что цикл <see cref="T:System.Threading.Tasks.Parallel" /> должен прекратить выполнение в первый удобный для системы момент.</summary>
<exception cref="T:System.InvalidOperationException">
<see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> Метод был вызван ранее.<see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> и <see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" /> не могут использоваться в сочетании итерациями одного и того же цикла.</exception>
</member>
<member name="T:System.Threading.Tasks.ParallelOptions">
<summary>Хранит параметры, настраивающие работу методов класса <see cref="T:System.Threading.Tasks.Parallel" />.</summary>
</member>
<member name="M:System.Threading.Tasks.ParallelOptions.#ctor">
<summary>Инициализирует новый экземпляр класса <see cref="T:System.Threading.Tasks.ParallelOptions" />.</summary>
</member>
<member name="P:System.Threading.Tasks.ParallelOptions.CancellationToken">
<summary>Получает или задает свойство <see cref="T:System.Threading.CancellationToken" />, связанное с экземпляром <see cref="T:System.Threading.Tasks.ParallelOptions" />.</summary>
<returns>Токен, связанный с данным экземпляром.</returns>
</member>
<member name="P:System.Threading.Tasks.ParallelOptions.MaxDegreeOfParallelism">
<summary>Возвращает или задает максимальное число параллельных задач включается этим экземпляром <see cref="T:System.Threading.Tasks.ParallelOptions" />.</summary>
<returns>Целое число, представляющее максимальную степень параллелизма.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">Свойство устанавливается значение ноль или значение, которое меньше -1.</exception>
</member>
<member name="P:System.Threading.Tasks.ParallelOptions.TaskScheduler">
<summary>Получает или задает свойство <see cref="T:System.Threading.Tasks.TaskScheduler" />, связанное с экземпляром <see cref="T:System.Threading.Tasks.ParallelOptions" />.Установка этого свойства на значение NULL означает, что следует использовать текущий планировщик.</summary>
<returns>Планировщик заданий, связанный с данным экземпляром.</returns>
</member>
</members>
</doc>

View File

@@ -0,0 +1,473 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Threading.Tasks.Parallel</name>
</assembly>
<members>
<member name="T:System.Threading.Tasks.Parallel">
<summary>提供对并行循环和区域的支持。</summary>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Action{System.Int32})">
<summary>执行 for在 Visual Basic 中为 For循环其中可能会并行运行迭代。</summary>
<returns>包含有关已完成的循环部分的信息的结构。</returns>
<param name="fromInclusive">开始索引(含)。</param>
<param name="toExclusive">结束索引(不含)。</param>
<param name="body">将为每个迭代调用一次的委托。</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Action{System.Int32,System.Threading.Tasks.ParallelLoopState})">
<summary>执行 for在 Visual Basic 中为 For循环其中可能会并行运行迭代而且可以监视和操作循环的状态。 </summary>
<returns>包含有关已完成的循环部分的信息的结构。</returns>
<param name="fromInclusive">开始索引(含)。</param>
<param name="toExclusive">结束索引(不含)。</param>
<param name="body">将为每个迭代调用一次的委托。</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int32,System.Int32,System.Func{``0},System.Func{System.Int32,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>执行具有线程本地数据的 for在 Visual Basic 中为 For循环其中可能会并行运行迭代而且可以监视和操作循环的状态。</summary>
<returns>包含有关已完成的循环部分的信息的结构。</returns>
<param name="fromInclusive">开始索引(含)。</param>
<param name="toExclusive">结束索引(不含)。</param>
<param name="localInit">用于返回每个任务的本地数据的初始状态的函数委托。</param>
<param name="body">将为每个迭代调用一次的委托。</param>
<param name="localFinally">用于对每个任务的本地状态执行一个最终操作的委托。</param>
<typeparam name="TLocal">线程本地数据的类型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Threading.Tasks.ParallelOptions,System.Action{System.Int32})">
<summary>执行 for在 Visual Basic 中为 For循环其中可能会并行运行迭代而且可以配置循环选项。</summary>
<returns>包含有关已完成的循环部分的信息的结构。</returns>
<param name="fromInclusive">开始索引(含)。</param>
<param name="toExclusive">结束索引(不含)。</param>
<param name="parallelOptions">一个对象,用于配置此操作的行为。</param>
<param name="body">将为每个迭代调用一次的委托。</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Threading.Tasks.ParallelOptions,System.Action{System.Int32,System.Threading.Tasks.ParallelLoopState})">
<summary>执行 for在 Visual Basic 中为 For循环其中可能会并行运行迭代而且可以配置循环选项可以监视和操作循环的状态。</summary>
<returns>包含有关已完成的循环部分的信息的结构。</returns>
<param name="fromInclusive">开始索引(含)。</param>
<param name="toExclusive">结束索引(不含)。</param>
<param name="parallelOptions">一个对象,用于配置此操作的行为。</param>
<param name="body">将为每个迭代调用一次的委托。</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int32,System.Int32,System.Threading.Tasks.ParallelOptions,System.Func{``0},System.Func{System.Int32,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>执行具有线程本地数据的 for在 Visual Basic 中为 For循环其中可能会并行运行迭代而且可以配置循环选项可以监视和操作循环的状态。</summary>
<returns>包含有关已完成的循环部分的信息的结构。</returns>
<param name="fromInclusive">开始索引(含)。</param>
<param name="toExclusive">结束索引(不含)。</param>
<param name="parallelOptions">一个对象,用于配置此操作的行为。</param>
<param name="localInit">用于返回每个任务的本地数据的初始状态的函数委托。</param>
<param name="body">将为每个迭代调用一次的委托。</param>
<param name="localFinally">用于对每个任务的本地状态执行一个最终操作的委托。</param>
<typeparam name="TLocal">线程本地数据的类型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Action{System.Int64})">
<summary>执行具有 64 位索引的 for在 Visual Basic 中为 For循环其中可能会并行运行迭代。</summary>
<returns>包含有关已完成的循环部分的信息的结构。</returns>
<param name="fromInclusive">开始索引(含)。</param>
<param name="toExclusive">结束索引(不含)。</param>
<param name="body">将为每个迭代调用一次的委托。</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Action{System.Int64,System.Threading.Tasks.ParallelLoopState})">
<summary>执行具有 64 位索引的 for在 Visual Basic 中为 For循环其中可能会并行运行迭代而且可以监视和操作循环的状态。</summary>
<returns>一个 <see cref="T:System.Threading.Tasks.ParallelLoopResult" /> 结构,其中包含有关已完成的循环部分的信息。</returns>
<param name="fromInclusive">开始索引(含)。</param>
<param name="toExclusive">结束索引(不含)。</param>
<param name="body">将为每个迭代调用一次的委托。</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int64,System.Int64,System.Func{``0},System.Func{System.Int64,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>执行具有 64 位索引和线程本地数据的 for在 Visual Basic 中为 For循环其中可能会并行运行迭代而且可以监视和操作循环的状态。</summary>
<returns>包含有关已完成的循环部分的信息的结构。</returns>
<param name="fromInclusive">开始索引(含)。</param>
<param name="toExclusive">结束索引(不含)。</param>
<param name="localInit">用于返回每个任务的本地数据的初始状态的函数委托。</param>
<param name="body">将为每个迭代调用一次的委托。</param>
<param name="localFinally">用于对每个任务的本地状态执行一个最终操作的委托。</param>
<typeparam name="TLocal">线程本地数据的类型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Threading.Tasks.ParallelOptions,System.Action{System.Int64})">
<summary>执行具有 64 位索引的 for在 Visual Basic 中为 For循环其中可能会并行运行迭代而且可以配置循环选项。</summary>
<returns>包含有关已完成的循环部分的信息的结构。</returns>
<param name="fromInclusive">开始索引(含)。</param>
<param name="toExclusive">结束索引(不含)。</param>
<param name="parallelOptions">一个对象,用于配置此操作的行为。</param>
<param name="body">将为每个迭代调用一次的委托。</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Threading.Tasks.ParallelOptions,System.Action{System.Int64,System.Threading.Tasks.ParallelLoopState})">
<summary>执行具有 64 位索引的 for在 Visual Basic 中为 For循环其中可能会并行运行迭代而且可以配置循环选项可以监视和操作循环的状态。</summary>
<returns>包含有关已完成的循环部分的信息的结构。</returns>
<param name="fromInclusive">开始索引(含)。</param>
<param name="toExclusive">结束索引(不含)。</param>
<param name="parallelOptions">一个对象,用于配置此操作的行为。</param>
<param name="body">将为每个迭代调用一次的委托。</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int64,System.Int64,System.Threading.Tasks.ParallelOptions,System.Func{``0},System.Func{System.Int64,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>执行具有 64 位索引和线程本地数据的 for在 Visual Basic 中为 For循环其中可能会并行运行迭代而且可以配置循环选项可以监视和操作循环的状态。</summary>
<returns>包含有关已完成的循环部分的信息的结构。</returns>
<param name="fromInclusive">开始索引(含)。</param>
<param name="toExclusive">结束索引(不含)。</param>
<param name="parallelOptions">一个对象,用于配置此操作的行为。</param>
<param name="localInit">用于返回每个线程的本地数据的初始状态的函数委托。</param>
<param name="body">将为每个迭代调用一次的委托。</param>
<param name="localFinally">用于对每个线程的本地状态执行一个最终操作的委托。</param>
<typeparam name="TLocal">线程本地数据的类型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.OrderablePartitioner{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary>执行 foreach在 Visual Basic 中为 For Each操作其中在 <see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" /> 中可能会并行运行迭代,而且可以监视和操作循环的状态。</summary>
<returns>包含有关已完成的循环部分的信息的结构。</returns>
<param name="source">包含原始数据源的可排序分区程序。</param>
<param name="body">将为每个迭代调用一次的委托。</param>
<typeparam name="TSource">
<paramref name="source" /> 中的元素的类型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> orderable partitioner returns false.-or-The <see cref="P:System.Collections.Concurrent.OrderablePartitioner`1.KeysNormalized" /> property in the source orderable partitioner returns false.-or-Any methods in the source orderable partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.OrderablePartitioner{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>执行具有线程本地数据的 foreach在 Visual Basic 中为 For Each操作其中在 <see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" /> 上可能会并行运行迭代,而且可以配置循环选项,可以监视和操作循环的状态。</summary>
<returns>包含有关已完成的循环部分的信息的结构。</returns>
<param name="source">包含原始数据源的可排序分区程序。</param>
<param name="localInit">用于返回每个任务的本地数据的初始状态的函数委托。</param>
<param name="body">将为每个迭代调用一次的委托。</param>
<param name="localFinally">用于对每个任务的本地状态执行一个最终操作的委托。</param>
<typeparam name="TSource">
<paramref name="source" /> 中的元素的类型。</typeparam>
<typeparam name="TLocal">线程本地数据的类型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.OrderablePartitioner{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary>执行 foreach在 Visual Basic 中为 For Each操作其中在 <see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" /> 中可能会并行运行迭代,而且可以配置循环选项,可以监视和操作循环的状态。</summary>
<returns>包含有关已完成的循环部分的信息的结构。</returns>
<param name="source">包含原始数据源的可排序分区程序。</param>
<param name="parallelOptions">一个对象,用于配置此操作的行为。</param>
<param name="body">将为每个迭代调用一次的委托。</param>
<typeparam name="TSource">
<paramref name="source" /> 中的元素的类型。</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> orderable partitioner returns false.-or-The <see cref="P:System.Collections.Concurrent.OrderablePartitioner`1.KeysNormalized" /> property in the <paramref name="source" /> orderable partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> orderable partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.OrderablePartitioner{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>执行具有 64 位索引和线程本地数据的 foreach在 Visual Basic 中为 For Each操作其中在 <see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" /> 上可能会并行运行迭代,而且可以配置循环选项,可以监视和操作循环的状态。</summary>
<returns>包含有关已完成的循环部分的信息的结构。</returns>
<param name="source">包含原始数据源的可排序分区程序。</param>
<param name="parallelOptions">一个对象,用于配置此操作的行为。</param>
<param name="localInit">用于返回每个任务的本地数据的初始状态的函数委托。</param>
<param name="body">将为每个迭代调用一次的委托。</param>
<param name="localFinally">用于对每个任务的本地状态执行一个最终操作的委托。</param>
<typeparam name="TSource">
<paramref name="source" /> 中的元素的类型。</typeparam>
<typeparam name="TLocal">线程本地数据的类型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> or <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Action{``0})">
<summary>执行 foreach在 Visual Basic 中为 For Each操作其中在 <see cref="T:System.Collections.Concurrent.Partitioner" /> 上可能会并行运行迭代。</summary>
<returns>包含有关已完成的循环部分的信息的结构。</returns>
<param name="source">包含原始数据源的分区程序。</param>
<param name="body">将为每个迭代调用一次的委托。</param>
<typeparam name="TSource">
<paramref name="source" /> 中的元素的类型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> partitioner return null.-or-The <see cref="M:System.Collections.Concurrent.Partitioner`1.GetPartitions(System.Int32)" /> method in the <paramref name="source" /> partitioner does not return the correct number of partitions.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary>执行 foreach在 Visual Basic 中为 For Each操作其中在 <see cref="T:System.Collections.Concurrent.Partitioner" /> 中可能会并行运行迭代,而且可以监视和操作循环的状态。</summary>
<returns>包含有关已完成的循环部分的信息的结构。</returns>
<param name="source">包含原始数据源的分区程序。</param>
<param name="body">将为每个迭代调用一次的委托。</param>
<typeparam name="TSource">
<paramref name="source" /> 中的元素的类型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-A method in the <paramref name="source" /> partitioner returns null.-or-The <see cref="M:System.Collections.Concurrent.Partitioner`1.GetPartitions(System.Int32)" /> method in the <paramref name="source" /> partitioner does not return the correct number of partitions.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.Partitioner{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>执行具有线程本地数据的 foreach在 Visual Basic 中为 For Each操作其中在 <see cref="T:System.Collections.Concurrent.Partitioner" /> 上可能会并行运行迭代,而且可以监视和操作循环的状态。</summary>
<returns>包含有关已完成的循环部分的信息的结构。</returns>
<param name="source">包含原始数据源的分区程序。</param>
<param name="localInit">用于返回每个任务的本地数据的初始状态的函数委托。</param>
<param name="body">将为每个迭代调用一次的委托。</param>
<param name="localFinally">用于对每个任务的本地状态执行一个最终操作的委托。</param>
<typeparam name="TSource">
<paramref name="source" /> 中的元素的类型。</typeparam>
<typeparam name="TLocal">线程本地数据的类型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0})">
<summary>执行 foreach在 Visual Basic 中为 For Each操作其中在 <see cref="T:System.Collections.Concurrent.Partitioner" /> 中可能会并行运行迭代,而且可以配置循环选项。</summary>
<returns>包含有关已完成的循环部分的信息的结构。</returns>
<param name="source">包含原始数据源的分区程序。</param>
<param name="parallelOptions">一个对象,用于配置此操作的行为。</param>
<param name="body">将为每个迭代调用一次的委托。</param>
<typeparam name="TSource">
<paramref name="source" /> 中的元素的类型。</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary>执行 foreach在 Visual Basic 中为 For Each操作其中在 <see cref="T:System.Collections.Concurrent.Partitioner" /> 中可能会并行运行迭代,而且可以配置循环选项,可以监视和操作循环的状态。</summary>
<returns>包含有关已完成的循环部分的信息的结构。</returns>
<param name="source">包含原始数据源的分区程序。</param>
<param name="parallelOptions">一个对象,用于配置此操作的行为。</param>
<param name="body">将为每个迭代调用一次的委托。</param>
<typeparam name="TSource">
<paramref name="source" /> 中的元素的类型。</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.Partitioner{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>执行具有线程本地数据的 foreach在 Visual Basic 中为 For Each操作其中在 <see cref="T:System.Collections.Concurrent.Partitioner" /> 上可能会并行运行迭代,而且可以配置循环选项,可以监视和操作循环的状态。</summary>
<returns>包含有关已完成的循环部分的信息的结构。</returns>
<param name="source">包含原始数据源的分区程序。</param>
<param name="parallelOptions">一个对象,用于配置此操作的行为。</param>
<param name="localInit">用于返回每个任务的本地数据的初始状态的函数委托。</param>
<param name="body">将为每个迭代调用一次的委托。</param>
<param name="localFinally">用于对每个任务的本地状态执行一个最终操作的委托。</param>
<typeparam name="TSource">
<paramref name="source" /> 中的元素的类型。</typeparam>
<typeparam name="TLocal">线程本地数据的类型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0})">
<summary>执行 foreach在 Visual Basic 中为 For Each操作其中在 <see cref="T:System.Collections.IEnumerable" /> 上可能会并行运行迭代。</summary>
<returns>包含有关已完成的循环部分的信息的结构。</returns>
<param name="source">可枚举的数据源。</param>
<param name="body">将为每个迭代调用一次的委托。</param>
<typeparam name="TSource">源中数据的类型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary>执行 foreach在 Visual Basic 中为 For Each操作其中在 <see cref="T:System.Collections.IEnumerable" /> 中可能会并行运行迭代,而且可以监视和操作循环的状态。</summary>
<returns>包含有关已完成的循环部分的信息的结构。</returns>
<param name="source">可枚举的数据源。</param>
<param name="body">将为每个迭代调用一次的委托。</param>
<typeparam name="TSource">源中数据的类型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary>执行具有 64 位索引的 foreach在 Visual Basic 中为 For Each操作其中在 <see cref="T:System.Collections.IEnumerable" /> 上可能会并行运行迭代,而且可以监视和操作循环的状态。</summary>
<returns>包含有关已完成的循环部分的信息的结构。</returns>
<param name="source">可枚举的数据源。</param>
<param name="body">将为每个迭代调用一次的委托。</param>
<typeparam name="TSource">源中数据的类型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>执行具有线程本地数据的 foreach在 Visual Basic 中为 For Each操作其中在 <see cref="T:System.Collections.IEnumerable" /> 上可能会并行运行迭代,而且可以监视和操作循环的状态。</summary>
<returns>包含有关已完成的循环部分的信息的结构。</returns>
<param name="source">可枚举的数据源。</param>
<param name="localInit">用于返回每个任务的本地数据的初始状态的函数委托。</param>
<param name="body">将为每个迭代调用一次的委托。</param>
<param name="localFinally">用于对每个任务的本地状态执行一个最终操作的委托。</param>
<typeparam name="TSource">源中数据的类型。</typeparam>
<typeparam name="TLocal">线程本地数据的类型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>执行具有线程本地数据的 foreach在 Visual Basic 中为 For Each操作其中在 <see cref="T:System.Collections.IEnumerable" /> 上可能会并行运行迭代,而且可以监视和操作循环的状态。</summary>
<returns>包含有关已完成的循环部分的信息的结构。</returns>
<param name="source">可枚举的数据源。</param>
<param name="localInit">用于返回每个任务的本地数据的初始状态的函数委托。</param>
<param name="body">将为每个迭代调用一次的委托。</param>
<param name="localFinally">用于对每个任务的本地状态执行一个最终操作的委托。</param>
<typeparam name="TSource">源中数据的类型。</typeparam>
<typeparam name="TLocal">线程本地数据的类型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0})">
<summary>执行 foreach在 Visual Basic 中为 For Each操作其中在 <see cref="T:System.Collections.IEnumerable" /> 中可能会并行运行迭代,而且可以匹配配置循环选项。</summary>
<returns>包含有关已完成的循环部分的信息的结构。</returns>
<param name="source">可枚举的数据源。</param>
<param name="parallelOptions">一个对象,用于配置此操作的行为。</param>
<param name="body">将为每个迭代调用一次的委托。</param>
<typeparam name="TSource">源中数据的类型。</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary>执行 foreach在 Visual Basic 中为 For Each操作其中在 <see cref="T:System.Collections.IEnumerable" /> 中可能会并行运行迭代,而且可以配置循环选项,可以监视和操作循环的状态。</summary>
<returns>包含有关已完成的循环部分的信息的结构。</returns>
<param name="source">可枚举的数据源。</param>
<param name="parallelOptions">一个对象,用于配置此操作的行为。</param>
<param name="body">将为每个迭代调用一次的委托。</param>
<typeparam name="TSource">源中数据的类型。</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary>执行具有 64 位索引的 foreach在 Visual Basic 中为 For Each操作其中在 <see cref="T:System.Collections.IEnumerable" /> 上可能会并行运行迭代,而且可以配置循环选项,可以监视和操作循环的状态。</summary>
<returns>包含有关已完成的循环部分的信息的结构。</returns>
<param name="source">可枚举的数据源。</param>
<param name="parallelOptions">一个对象,用于配置此操作的行为。</param>
<param name="body">将为每个迭代调用一次的委托。</param>
<typeparam name="TSource">源中数据的类型。</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>执行具有线程本地数据的 foreach在 Visual Basic 中为 For Each操作其中在 <see cref="T:System.Collections.IEnumerable" /> 上可能会并行运行迭代,而且可以配置循环选项,可以监视和操作循环的状态。</summary>
<returns>包含有关已完成的循环部分的信息的结构。</returns>
<param name="source">可枚举的数据源。</param>
<param name="parallelOptions">一个对象,用于配置此操作的行为。</param>
<param name="localInit">用于返回每个任务的本地数据的初始状态的函数委托。</param>
<param name="body">将为每个迭代调用一次的委托。</param>
<param name="localFinally">用于对每个任务的本地状态执行一个最终操作的委托。</param>
<typeparam name="TSource">源中数据的类型。</typeparam>
<typeparam name="TLocal">线程本地数据的类型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>执行具有线程本地数据和 64 位索引的 foreach在 Visual Basic 中为 For Each操作其中在 <see cref="T:System.Collections.IEnumerable" /> 上可能会并行运行迭代,而且可以配置循环选项,可以监视和操作循环的状态。</summary>
<returns>包含有关已完成的循环部分的信息的结构。</returns>
<param name="source">可枚举的数据源。</param>
<param name="parallelOptions">一个对象,用于配置此操作的行为。</param>
<param name="localInit">用于返回每个任务的本地数据的初始状态的函数委托。</param>
<param name="body">将为每个迭代调用一次的委托。</param>
<param name="localFinally">用于对每个任务的本地状态执行一个最终操作的委托。</param>
<typeparam name="TSource">源中数据的类型。</typeparam>
<typeparam name="TLocal">线程本地数据的类型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.Invoke(System.Action[])">
<summary>尽可能并行执行提供的每个操作。</summary>
<param name="actions">要执行的 <see cref="T:System.Action" /> 数组。</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="actions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that is thrown when any action in the <paramref name="actions" /> array throws an exception.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="actions" /> array contains a null element.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.Invoke(System.Threading.Tasks.ParallelOptions,System.Action[])">
<summary>执行所提供的每个操作,而且尽可能并行运行,除非用户取消了操作。</summary>
<param name="parallelOptions">一个对象,用于配置此操作的行为。</param>
<param name="actions">要执行的操作数组。</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> is set.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="actions" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that is thrown when any action in the <paramref name="actions" /> array throws an exception.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="actions" /> array contains a null element.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="T:System.Threading.Tasks.ParallelLoopResult">
<summary>提供执行 <see cref="T:System.Threading.Tasks.Parallel" /> 循环的完成状态。</summary>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopResult.IsCompleted">
<summary>获取该循环是否已运行完成(即,该循环的所有迭代均已执行,并且该循环没有收到提前结束的请求)。</summary>
<returns>如果该循环已运行完成,则为 true否则为 false。</returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopResult.LowestBreakIteration">
<summary>获取从中调用 <see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> 的最低迭代的索引。</summary>
<returns>返回一个表示从中调用 Break 语句的最低迭代的整数。</returns>
</member>
<member name="T:System.Threading.Tasks.ParallelLoopState">
<summary>可使并行循环迭代与其他迭代交互。此类的实例由 <see cref="T:System.Threading.Tasks.Parallel" /> 类提供给每个循环;不能在您的用户代码中创建实例。</summary>
</member>
<member name="M:System.Threading.Tasks.ParallelLoopState.Break">
<summary>告知 <see cref="T:System.Threading.Tasks.Parallel" /> 循环应在系统方便的时候尽早停止执行当前迭代之外的迭代。</summary>
<exception cref="T:System.InvalidOperationException">
<see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" /> 方法以前被调用过。<see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /><see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" /> 不能被相同循环的迭代组合使用。</exception>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.IsExceptional">
<summary>获取循环的任何迭代是否已引发相应迭代未处理的异常。</summary>
<returns>如果引发了未经处理的异常,则为 true否则为 false。 </returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.IsStopped">
<summary>获取循环的任何迭代是否已调用 <see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" /> 方法。</summary>
<returns>如果任何迭代通过调用 <see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" /> 方法已停止循环,则为 true否则为 false。</returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.LowestBreakIteration">
<summary>获取从中调用 <see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> 的最低循环迭代。</summary>
<returns>从中调用 <see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> 的最低迭代。如果是 <see cref="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Action{``0})" /> 循环,该值会基于内部生成的索引。</returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.ShouldExitCurrentIteration">
<summary>获取循环的当前迭代是否应基于此迭代或其他迭代发出的请求退出。</summary>
<returns>如果当前迭代应退出,则为 true否则为 false。</returns>
</member>
<member name="M:System.Threading.Tasks.ParallelLoopState.Stop">
<summary>告知 <see cref="T:System.Threading.Tasks.Parallel" /> 循环应在系统方便的时候尽早停止执行。</summary>
<exception cref="T:System.InvalidOperationException">
<see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> 以前调用了方法。<see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /><see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" /> 不能被相同循环的迭代组合使用。</exception>
</member>
<member name="T:System.Threading.Tasks.ParallelOptions">
<summary>存储用于配置 <see cref="T:System.Threading.Tasks.Parallel" /> 类的方法的操作的选项。</summary>
</member>
<member name="M:System.Threading.Tasks.ParallelOptions.#ctor">
<summary>初始化 <see cref="T:System.Threading.Tasks.ParallelOptions" /> 类的新实例。</summary>
</member>
<member name="P:System.Threading.Tasks.ParallelOptions.CancellationToken">
<summary>获取或设置与此 <see cref="T:System.Threading.Tasks.ParallelOptions" /> 实例关联的 <see cref="T:System.Threading.CancellationToken" /></summary>
<returns>与此实例关联的标记。</returns>
</member>
<member name="P:System.Threading.Tasks.ParallelOptions.MaxDegreeOfParallelism">
<summary>获取或设置此 <see cref="T:System.Threading.Tasks.ParallelOptions" /> 实例所允许的并发任务的最大数目。</summary>
<returns>一个表示最大并行度的整数。</returns>
<exception cref="T:System.ArgumentOutOfRangeException">该属性被设置为 0 或小于 1- 的值。</exception>
</member>
<member name="P:System.Threading.Tasks.ParallelOptions.TaskScheduler">
<summary>获取或设置与此 <see cref="T:System.Threading.Tasks.ParallelOptions" /> 实例关联的 <see cref="T:System.Threading.Tasks.TaskScheduler" />。将此属性设置为 null以指示应使用当前计划程序。</summary>
<returns>与此实例关联的任务计划程序。</returns>
</member>
</members>
</doc>

View File

@@ -0,0 +1,473 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Threading.Tasks.Parallel</name>
</assembly>
<members>
<member name="T:System.Threading.Tasks.Parallel">
<summary>提供平行迴圈和區域的支援。</summary>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Action{System.Int32})">
<summary>執行 for (在 Visual Basic 中為 For) 迴圈,其中可以平行執行反覆項目。</summary>
<returns>包含迴圈已完成部分之相關資訊的的結構。</returns>
<param name="fromInclusive">起始索引 (含)。</param>
<param name="toExclusive">結束索引 (不含)。</param>
<param name="body">每個反覆項目都會叫用一次的委派。</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Action{System.Int32,System.Threading.Tasks.ParallelLoopState})">
<summary>執行 for (在 Visual Basic 中為 For) 迴圈,其中可以平行執行反覆項目,還可以監控和操作迴圈的狀態。 </summary>
<returns>包含迴圈已完成部分之相關資訊的的結構。</returns>
<param name="fromInclusive">起始索引 (含)。</param>
<param name="toExclusive">結束索引 (不含)。</param>
<param name="body">每個反覆項目都會叫用一次的委派。</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int32,System.Int32,System.Func{``0},System.Func{System.Int32,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>使用執行緒區域資料執行 for (在 Visual Basic 中為 For) 迴圈,其中可以平行執行反覆項目,還可以監控和操作迴圈的狀態。</summary>
<returns>包含迴圈已完成部分之相關資訊的的結構。</returns>
<param name="fromInclusive">起始索引 (含)。</param>
<param name="toExclusive">結束索引 (不含)。</param>
<param name="localInit">函式委派,會針對每項工作傳回本機資料的初始狀態。</param>
<param name="body">每個反覆項目都會叫用一次的委派。</param>
<param name="localFinally">委派,會針對每項工作的本機狀態執行最終動作。</param>
<typeparam name="TLocal">執行緒區域資料的類型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Threading.Tasks.ParallelOptions,System.Action{System.Int32})">
<summary>執行 for (在 Visual Basic 中為 For) 迴圈,其中可以平行執行反覆項目,還可以設定迴圈選項。</summary>
<returns>包含迴圈已完成部分之相關資訊的的結構。</returns>
<param name="fromInclusive">起始索引 (含)。</param>
<param name="toExclusive">結束索引 (不含)。</param>
<param name="parallelOptions">物件,設定這個作業的行為。</param>
<param name="body">每個反覆項目都會叫用一次的委派。</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int32,System.Int32,System.Threading.Tasks.ParallelOptions,System.Action{System.Int32,System.Threading.Tasks.ParallelLoopState})">
<summary>執行 for (在 Visual Basic 中為 For) 迴圈,其中可以平行執行反覆項目、可以設定迴圈選項,還可以監控和操作迴圈的狀態。</summary>
<returns>包含迴圈已完成部分之相關資訊的的結構。</returns>
<param name="fromInclusive">起始索引 (含)。</param>
<param name="toExclusive">結束索引 (不含)。</param>
<param name="parallelOptions">物件,設定這個作業的行為。</param>
<param name="body">每個反覆項目都會叫用一次的委派。</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int32,System.Int32,System.Threading.Tasks.ParallelOptions,System.Func{``0},System.Func{System.Int32,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>使用執行緒區域資料執行 for (在 Visual Basic 中為 For) 迴圈,其中可以平行執行反覆項目、可以設定迴圈選項,還可以監控和操作迴圈的狀態。</summary>
<returns>包含迴圈已完成部分之相關資訊的的結構。</returns>
<param name="fromInclusive">起始索引 (含)。</param>
<param name="toExclusive">結束索引 (不含)。</param>
<param name="parallelOptions">物件,設定這個作業的行為。</param>
<param name="localInit">函式委派,會針對每項工作傳回本機資料的初始狀態。</param>
<param name="body">每個反覆項目都會叫用一次的委派。</param>
<param name="localFinally">委派,會針對每項工作的本機狀態執行最終動作。</param>
<typeparam name="TLocal">執行緒區域資料的類型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Action{System.Int64})">
<summary>使用 64 位元索引執行 for (在 Visual Basic 中為 For) 迴圈,其中可以平行執行反覆項目。</summary>
<returns>包含迴圈已完成部分之相關資訊的的結構。</returns>
<param name="fromInclusive">起始索引 (含)。</param>
<param name="toExclusive">結束索引 (不含)。</param>
<param name="body">每個反覆項目都會叫用一次的委派。</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Action{System.Int64,System.Threading.Tasks.ParallelLoopState})">
<summary>使用 64 位元索引執行 for (在 Visual Basic 中為 For) 迴圈,其中可以平行執行反覆項目,還可以監控和操作迴圈的狀態。</summary>
<returns>
<see cref="T:System.Threading.Tasks.ParallelLoopResult" /> 結構,包含迴圈已完成部分的相關資訊。</returns>
<param name="fromInclusive">起始索引 (含)。</param>
<param name="toExclusive">結束索引 (不含)。</param>
<param name="body">每個反覆項目都會叫用一次的委派。</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int64,System.Int64,System.Func{``0},System.Func{System.Int64,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>使用 64 位元索引和執行緒區域資料執行 for (在 Visual Basic 中為 For) 迴圈,其中可以平行執行反覆項目,還可以監控和操作迴圈的狀態。</summary>
<returns>包含迴圈已完成部分之相關資訊的的結構。</returns>
<param name="fromInclusive">起始索引 (含)。</param>
<param name="toExclusive">結束索引 (不含)。</param>
<param name="localInit">函式委派,會針對每項工作傳回本機資料的初始狀態。</param>
<param name="body">每個反覆項目都會叫用一次的委派。</param>
<param name="localFinally">委派,會針對每項工作的本機狀態執行最終動作。</param>
<typeparam name="TLocal">執行緒區域資料的類型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Threading.Tasks.ParallelOptions,System.Action{System.Int64})">
<summary>使用 64 位元索引執行 for (在 Visual Basic 中為 For) 迴圈,其中可以平行執行反覆項目,還可以設定迴圈選項。</summary>
<returns>包含迴圈已完成部分之相關資訊的的結構。</returns>
<param name="fromInclusive">起始索引 (含)。</param>
<param name="toExclusive">結束索引 (不含)。</param>
<param name="parallelOptions">物件,設定這個作業的行為。</param>
<param name="body">每個反覆項目都會叫用一次的委派。</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For(System.Int64,System.Int64,System.Threading.Tasks.ParallelOptions,System.Action{System.Int64,System.Threading.Tasks.ParallelLoopState})">
<summary>使用 64 位元索引執行 for (在 Visual Basic 中為 For) 迴圈,其中可以平行執行反覆項目、可以設定迴圈選項,還可以監控和操作迴圈的狀態。</summary>
<returns>包含迴圈已完成部分之相關資訊的的結構。</returns>
<param name="fromInclusive">起始索引 (含)。</param>
<param name="toExclusive">結束索引 (不含)。</param>
<param name="parallelOptions">物件,設定這個作業的行為。</param>
<param name="body">每個反覆項目都會叫用一次的委派。</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.For``1(System.Int64,System.Int64,System.Threading.Tasks.ParallelOptions,System.Func{``0},System.Func{System.Int64,System.Threading.Tasks.ParallelLoopState,``0,``0},System.Action{``0})">
<summary>使用 64 位元索引和執行緒區域資料執行 for (在 Visual Basic 中為 For) 迴圈,其中可以平行執行反覆項目、可以設定迴圈選項,還可以監控和操作迴圈的狀態。</summary>
<returns>包含迴圈已完成部分之相關資訊的的結構。</returns>
<param name="fromInclusive">起始索引 (含)。</param>
<param name="toExclusive">結束索引 (不含)。</param>
<param name="parallelOptions">物件,設定這個作業的行為。</param>
<param name="localInit">函式委派,會針對每個執行緒傳回本機資料的初始狀態。</param>
<param name="body">每個反覆項目都會叫用一次的委派。</param>
<param name="localFinally">委派,會針對每個執行緒的本機狀態執行最終動作。</param>
<typeparam name="TLocal">執行緒區域資料的類型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.OrderablePartitioner{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary><see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" /> 上執行 foreach (在 Visual Basic 中為 For Each) 運算,其中可以平行執行反覆項目,還可以監控和操作迴圈的狀態。</summary>
<returns>包含迴圈已完成部分之相關資訊的的結構。</returns>
<param name="source">包含原始資料來源的可排序 Partitioner。</param>
<param name="body">每個反覆項目都會叫用一次的委派。</param>
<typeparam name="TSource">
<paramref name="source" /> 中的項目類型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> orderable partitioner returns false.-or-The <see cref="P:System.Collections.Concurrent.OrderablePartitioner`1.KeysNormalized" /> property in the source orderable partitioner returns false.-or-Any methods in the source orderable partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.OrderablePartitioner{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>使用執行緒區域資料在 <see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" /> 上執行 foreach (在 Visual Basic 中為 For Each) 運算,其中可以平行執行反覆項目、可以設定迴圈選項,還可以監控和操作迴圈的狀態。</summary>
<returns>包含迴圈已完成部分之相關資訊的的結構。</returns>
<param name="source">包含原始資料來源的可排序 Partitioner。</param>
<param name="localInit">函式委派,會針對每項工作傳回本機資料的初始狀態。</param>
<param name="body">每個反覆項目都會叫用一次的委派。</param>
<param name="localFinally">委派,會針對每項工作的本機狀態執行最終動作。</param>
<typeparam name="TSource">
<paramref name="source" /> 中的項目類型。</typeparam>
<typeparam name="TLocal">執行緒區域資料的類型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.OrderablePartitioner{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary><see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" /> 上執行 foreach (在 Visual Basic 中為 For Each) 運算,其中可以平行執行反覆項目、可以設定迴圈選項,還可以監控和操作迴圈的狀態。</summary>
<returns>包含迴圈已完成部分之相關資訊的的結構。</returns>
<param name="source">包含原始資料來源的可排序 Partitioner。</param>
<param name="parallelOptions">物件,設定這個作業的行為。</param>
<param name="body">每個反覆項目都會叫用一次的委派。</param>
<typeparam name="TSource">
<paramref name="source" /> 中的項目類型。</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> orderable partitioner returns false.-or-The <see cref="P:System.Collections.Concurrent.OrderablePartitioner`1.KeysNormalized" /> property in the <paramref name="source" /> orderable partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> orderable partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.OrderablePartitioner{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>使用 64 位元索引和執行緒區域資料在 <see cref="T:System.Collections.Concurrent.OrderablePartitioner`1" /> 上執行 foreach (在 Visual Basic 中為 For Each) 運算,其中可以平行執行反覆項目、可以設定迴圈選項,還可以監控和操作迴圈的狀態。</summary>
<returns>包含迴圈已完成部分之相關資訊的的結構。</returns>
<param name="source">包含原始資料來源的可排序 Partitioner。</param>
<param name="parallelOptions">物件,設定這個作業的行為。</param>
<param name="localInit">函式委派,會針對每項工作傳回本機資料的初始狀態。</param>
<param name="body">每個反覆項目都會叫用一次的委派。</param>
<param name="localFinally">委派,會針對每項工作的本機狀態執行最終動作。</param>
<typeparam name="TSource">
<paramref name="source" /> 中的項目類型。</typeparam>
<typeparam name="TLocal">執行緒區域資料的類型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> or <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Action{``0})">
<summary><see cref="T:System.Collections.Concurrent.Partitioner" /> 上執行 foreach (在 Visual Basic 中為 For Each) 運算,其中可以平行執行反覆項目。</summary>
<returns>包含迴圈已完成部分之相關資訊的的結構。</returns>
<param name="source">包含原始資料來源的 Partitioner。</param>
<param name="body">每個反覆項目都會叫用一次的委派。</param>
<typeparam name="TSource">
<paramref name="source" /> 中的項目類型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> partitioner return null.-or-The <see cref="M:System.Collections.Concurrent.Partitioner`1.GetPartitions(System.Int32)" /> method in the <paramref name="source" /> partitioner does not return the correct number of partitions.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary><see cref="T:System.Collections.Concurrent.Partitioner" /> 上執行 foreach (在 Visual Basic 中為 For Each) 運算,其中可以平行執行反覆項目,還可以監控和操作迴圈的狀態。</summary>
<returns>包含迴圈已完成部分之相關資訊的的結構。</returns>
<param name="source">包含原始資料來源的 Partitioner。</param>
<param name="body">每個反覆項目都會叫用一次的委派。</param>
<typeparam name="TSource">
<paramref name="source" /> 中的項目類型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-A method in the <paramref name="source" /> partitioner returns null.-or-The <see cref="M:System.Collections.Concurrent.Partitioner`1.GetPartitions(System.Int32)" /> method in the <paramref name="source" /> partitioner does not return the correct number of partitions.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.Partitioner{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>使用執行緒區域資料在 <see cref="T:System.Collections.Concurrent.Partitioner" /> 上執行 foreach (在 Visual Basic 中為 For Each) 運算,其中可以平行執行反覆項目,還可以監控和操作迴圈的狀態。</summary>
<returns>包含迴圈已完成部分之相關資訊的的結構。</returns>
<param name="source">包含原始資料來源的 Partitioner。</param>
<param name="localInit">函式委派,會針對每項工作傳回本機資料的初始狀態。</param>
<param name="body">每個反覆項目都會叫用一次的委派。</param>
<param name="localFinally">委派,會針對每項工作的本機狀態執行最終動作。</param>
<typeparam name="TSource">
<paramref name="source" /> 中的項目類型。</typeparam>
<typeparam name="TLocal">執行緒區域資料的類型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0})">
<summary><see cref="T:System.Collections.Concurrent.Partitioner" /> 上執行 foreach (在 Visual Basic 中為 For Each) 運算,其中可以平行執行反覆項目,還可以設定迴圈選項。</summary>
<returns>包含迴圈已完成部分之相關資訊的的結構。</returns>
<param name="source">包含原始資料來源的 Partitioner。</param>
<param name="parallelOptions">物件,設定這個作業的行為。</param>
<param name="body">每個反覆項目都會叫用一次的委派。</param>
<typeparam name="TSource">
<paramref name="source" /> 中的項目類型。</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary><see cref="T:System.Collections.Concurrent.Partitioner" /> 上執行 foreach (在 Visual Basic 中為 For Each) 運算,其中可以平行執行反覆項目、可以設定迴圈選項,還可以監控和操作迴圈的狀態。</summary>
<returns>包含迴圈已完成部分之相關資訊的的結構。</returns>
<param name="source">包含原始資料來源的 Partitioner。</param>
<param name="parallelOptions">物件,設定這個作業的行為。</param>
<param name="body">每個反覆項目都會叫用一次的委派。</param>
<typeparam name="TSource">
<paramref name="source" /> 中的項目類型。</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /> partitioner returns false.-or-The exception that is thrown when any methods in the <paramref name="source" /> partitioner return null.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Concurrent.Partitioner{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>使用執行緒區域資料在 <see cref="T:System.Collections.Concurrent.Partitioner" /> 上執行 foreach (在 Visual Basic 中為 For Each) 運算,其中可以平行執行反覆項目、可以設定迴圈選項,還可以監控和操作迴圈的狀態。</summary>
<returns>包含迴圈已完成部分之相關資訊的的結構。</returns>
<param name="source">包含原始資料來源的 Partitioner。</param>
<param name="parallelOptions">物件,設定這個作業的行為。</param>
<param name="localInit">函式委派,會針對每項工作傳回本機資料的初始狀態。</param>
<param name="body">每個反覆項目都會叫用一次的委派。</param>
<param name="localFinally">委派,會針對每項工作的本機狀態執行最終動作。</param>
<typeparam name="TSource">
<paramref name="source" /> 中的項目類型。</typeparam>
<typeparam name="TLocal">執行緒區域資料的類型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Collections.Concurrent.Partitioner`1.SupportsDynamicPartitions" /> property in the <paramref name="source" /><see cref="T:System.Collections.Concurrent.Partitioner" /> returns false or the partitioner returns null partitions.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0})">
<summary><see cref="T:System.Collections.IEnumerable" /> 上執行 foreach (在 Visual Basic 中為 For Each) 運算,其中可以平行執行反覆項目。</summary>
<returns>包含迴圈已完成部分之相關資訊的的結構。</returns>
<param name="source">可列舉的資料來源。</param>
<param name="body">每個反覆項目都會叫用一次的委派。</param>
<typeparam name="TSource">來源中的資料類型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary><see cref="T:System.Collections.IEnumerable" /> 上執行 foreach (在 Visual Basic 中為 For Each) 運算,其中可以平行執行反覆項目,還可以監控和操作迴圈的狀態。</summary>
<returns>包含迴圈已完成部分之相關資訊的的結構。</returns>
<param name="source">可列舉的資料來源。</param>
<param name="body">每個反覆項目都會叫用一次的委派。</param>
<typeparam name="TSource">來源中的資料類型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary>使用 64 位元索引在 <see cref="T:System.Collections.IEnumerable" /> 上執行 foreach (在 Visual Basic 中為 For Each) 運算,其中可以平行執行反覆項目,還可以監控和操作迴圈的狀態。</summary>
<returns>包含迴圈已完成部分之相關資訊的的結構。</returns>
<param name="source">可列舉的資料來源。</param>
<param name="body">每個反覆項目都會叫用一次的委派。</param>
<typeparam name="TSource">來源中的資料類型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>使用執行緒區域資料在 <see cref="T:System.Collections.IEnumerable" /> 上執行 foreach (在 Visual Basic 中為 For Each) 運算,其中可以平行執行反覆項目,還可以監控和操作迴圈的狀態。</summary>
<returns>包含迴圈已完成部分之相關資訊的的結構。</returns>
<param name="source">可列舉的資料來源。</param>
<param name="localInit">函式委派,會針對每項工作傳回本機資料的初始狀態。</param>
<param name="body">每個反覆項目都會叫用一次的委派。</param>
<param name="localFinally">委派,會針對每項工作的本機狀態執行最終動作。</param>
<typeparam name="TSource">來源中的資料類型。</typeparam>
<typeparam name="TLocal">執行緒區域資料的類型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>使用執行緒區域資料在 <see cref="T:System.Collections.IEnumerable" /> 上執行 foreach (在 Visual Basic 中為 For Each) 運算,其中可以平行執行反覆項目,還可以監控和操作迴圈的狀態。</summary>
<returns>包含迴圈已完成部分之相關資訊的的結構。</returns>
<param name="source">可列舉的資料來源。</param>
<param name="localInit">函式委派,會針對每項工作傳回本機資料的初始狀態。</param>
<param name="body">每個反覆項目都會叫用一次的委派。</param>
<param name="localFinally">委派,會針對每項工作的本機狀態執行最終動作。</param>
<typeparam name="TSource">來源中的資料類型。</typeparam>
<typeparam name="TLocal">執行緒區域資料的類型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0})">
<summary><see cref="T:System.Collections.IEnumerable" /> 上執行 foreach (在 Visual Basic 中為 For Each) 運算,其中可以平行執行反覆項目,還可以設定迴圈選項。</summary>
<returns>包含迴圈已完成部分之相關資訊的的結構。</returns>
<param name="source">可列舉的資料來源。</param>
<param name="parallelOptions">物件,設定這個作業的行為。</param>
<param name="body">每個反覆項目都會叫用一次的委派。</param>
<typeparam name="TSource">來源中的資料類型。</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState})">
<summary><see cref="T:System.Collections.IEnumerable" /> 上執行 foreach (在 Visual Basic 中為 For Each) 運算,其中可以平行執行反覆項目、可以設定迴圈選項,還可以監控和操作迴圈的狀態。</summary>
<returns>包含迴圈已完成部分之相關資訊的的結構。</returns>
<param name="source">可列舉的資料來源。</param>
<param name="parallelOptions">物件,設定這個作業的行為。</param>
<param name="body">每個反覆項目都會叫用一次的委派。</param>
<typeparam name="TSource">來源中的資料類型。</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Action{``0,System.Threading.Tasks.ParallelLoopState,System.Int64})">
<summary>使用 64 位元索引在 <see cref="T:System.Collections.IEnumerable" /> 上執行 foreach (在 Visual Basic 中為 For Each) 運算,其中可以平行執行反覆項目、可以設定迴圈選項,還可以監控和操作迴圈的狀態。</summary>
<returns>包含迴圈已完成部分之相關資訊的的結構。</returns>
<param name="source">可列舉的資料來源。</param>
<param name="parallelOptions">物件,設定這個作業的行為。</param>
<param name="body">每個反覆項目都會叫用一次的委派。</param>
<typeparam name="TSource">來源中的資料類型。</typeparam>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,``1,``1},System.Action{``1})">
<summary>使用執行緒區域資料在 <see cref="T:System.Collections.IEnumerable" /> 上執行 foreach (在 Visual Basic 中為 For Each) 運算,其中可以平行執行反覆項目、可以設定迴圈選項,還可以監控和操作迴圈的狀態。</summary>
<returns>包含迴圈已完成部分之相關資訊的的結構。</returns>
<param name="source">可列舉的資料來源。</param>
<param name="parallelOptions">物件,設定這個作業的行為。</param>
<param name="localInit">函式委派,會針對每項工作傳回本機資料的初始狀態。</param>
<param name="body">每個反覆項目都會叫用一次的委派。</param>
<param name="localFinally">委派,會針對每項工作的本機狀態執行最終動作。</param>
<typeparam name="TSource">來源中的資料類型。</typeparam>
<typeparam name="TLocal">執行緒區域資料的類型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.ForEach``2(System.Collections.Generic.IEnumerable{``0},System.Threading.Tasks.ParallelOptions,System.Func{``1},System.Func{``0,System.Threading.Tasks.ParallelLoopState,System.Int64,``1,``1},System.Action{``1})">
<summary>使用執行緒區域資料和 64 位元索引在 <see cref="T:System.Collections.IEnumerable" /> 上執行 foreach (在 Visual Basic 中為 For Each) 運算,其中可以平行執行反覆項目、可以設定迴圈選項,還可以監控和操作迴圈的狀態。</summary>
<returns>包含迴圈已完成部分之相關資訊的的結構。</returns>
<param name="source">可列舉的資料來源。</param>
<param name="parallelOptions">物件,設定這個作業的行為。</param>
<param name="localInit">函式委派,會針對每項工作傳回本機資料的初始狀態。</param>
<param name="body">每個反覆項目都會叫用一次的委派。</param>
<param name="localFinally">委派,會針對每項工作的本機狀態執行最終動作。</param>
<typeparam name="TSource">來源中的資料類型。</typeparam>
<typeparam name="TLocal">執行緒區域資料的類型。</typeparam>
<exception cref="T:System.ArgumentNullException">The <paramref name="source" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.-or-The <paramref name="body" /> argument is null.-or-The <paramref name="localInit" /> argument is null.-or-The <paramref name="localFinally" /> argument is null.</exception>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> argument is canceled.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
<exception cref="T:System.AggregateException">The exception that contains all the individual exceptions thrown on all threads.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.Invoke(System.Action[])">
<summary>執行每個提供的動作 (可能會平行執行)。</summary>
<param name="actions">要執行的 <see cref="T:System.Action" /> 陣列。</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="actions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that is thrown when any action in the <paramref name="actions" /> array throws an exception.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="actions" /> array contains a null element.</exception>
</member>
<member name="M:System.Threading.Tasks.Parallel.Invoke(System.Threading.Tasks.ParallelOptions,System.Action[])">
<summary>除非使用者取消作業,否則執行每個提供的動作 (可能會平行執行)。</summary>
<param name="parallelOptions">物件,設定這個作業的行為。</param>
<param name="actions">要執行的動作陣列。</param>
<exception cref="T:System.OperationCanceledException">The <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> is set.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="actions" /> argument is null.-or-The <paramref name="parallelOptions" /> argument is null.</exception>
<exception cref="T:System.AggregateException">The exception that is thrown when any action in the <paramref name="actions" /> array throws an exception.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="actions" /> array contains a null element.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.CancellationTokenSource" /> associated with the <see cref="T:System.Threading.CancellationToken" /> in the <paramref name="parallelOptions" /> has been disposed.</exception>
</member>
<member name="T:System.Threading.Tasks.ParallelLoopResult">
<summary>提供 <see cref="T:System.Threading.Tasks.Parallel" /> 迴圈的執行完成狀態。</summary>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopResult.IsCompleted">
<summary>取得迴圈是否已徹底執行,即迴圈中的所有反覆項目都已執行,而且迴圈未收到任何不當結束的要求。</summary>
<returns>如果迴圈執行完成則為 true否則為 false。</returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopResult.LowestBreakIteration">
<summary>取得呼叫 <see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> 之最低反覆項目的索引。</summary>
<returns>傳回整數,表示已呼叫 Break 陳述式的最低反覆項目。</returns>
</member>
<member name="T:System.Threading.Tasks.ParallelLoopState">
<summary>讓平行迴圈的反覆項目與其他反覆項目互動。<see cref="T:System.Threading.Tasks.Parallel" /> 類別會在每個迴圈中提供這個類別的執行個體,您不能在自己的程式碼中建立執行個體。</summary>
</member>
<member name="M:System.Threading.Tasks.ParallelLoopState.Break">
<summary>傳達 <see cref="T:System.Threading.Tasks.Parallel" /> 迴圈應該在過了目前的反覆項目之後,依系統的方便盡早停止執行反覆項目。</summary>
<exception cref="T:System.InvalidOperationException">先前已呼叫 <see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" /> 方法。<see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /><see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" /> 可能無法由相同迴圈的反覆項目搭配使用。</exception>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.IsExceptional">
<summary>取得迴圈中是否有任何反覆項目已擲回該反覆項目未處理的例外狀況。</summary>
<returns>如果擲回未處理的例外狀況,則為 true否則為 false。 </returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.IsStopped">
<summary>取得迴圈中是否有任何反覆項目已呼叫 <see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" /> 方法。</summary>
<returns>如果有任何反覆項目藉由呼叫 <see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" /> 方法而停止迴圈,則為 true否則為 false。</returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.LowestBreakIteration">
<summary>取得迴圈中呼叫 <see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> 的最低反覆項目。</summary>
<returns>呼叫 <see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> 的最低反覆項目。在 <see cref="M:System.Threading.Tasks.Parallel.ForEach``1(System.Collections.Concurrent.Partitioner{``0},System.Action{``0})" /> 迴圈的案例中,值是根據內部產生的索引。</returns>
</member>
<member name="P:System.Threading.Tasks.ParallelLoopState.ShouldExitCurrentIteration">
<summary>取得是否應該根據迴圈中目前這個或其他反覆項目的要求,來結束目前這個反覆項目。</summary>
<returns>如果目前的反覆項目應該結束,則為 true否則為 false。</returns>
</member>
<member name="M:System.Threading.Tasks.ParallelLoopState.Stop">
<summary>傳達 <see cref="T:System.Threading.Tasks.Parallel" /> 迴圈應該依系統的方便盡早停止執行。</summary>
<exception cref="T:System.InvalidOperationException">
<see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /> 以前调用了方法。<see cref="M:System.Threading.Tasks.ParallelLoopState.Break" /><see cref="M:System.Threading.Tasks.ParallelLoopState.Stop" /> 可能無法由相同迴圈的反覆項目搭配使用。</exception>
</member>
<member name="T:System.Threading.Tasks.ParallelOptions">
<summary>儲存選項,這些選項設定 <see cref="T:System.Threading.Tasks.Parallel" /> 類別上之方法的作業。</summary>
</member>
<member name="M:System.Threading.Tasks.ParallelOptions.#ctor">
<summary>初始化 <see cref="T:System.Threading.Tasks.ParallelOptions" /> 類別的新執行個體。</summary>
</member>
<member name="P:System.Threading.Tasks.ParallelOptions.CancellationToken">
<summary>取得或設定與這個 <see cref="T:System.Threading.Tasks.ParallelOptions" /> 執行個體關聯的 <see cref="T:System.Threading.CancellationToken" /></summary>
<returns>與這個執行個體相關聯的語彙基元。</returns>
</member>
<member name="P:System.Threading.Tasks.ParallelOptions.MaxDegreeOfParallelism">
<summary>取得或設定這個 <see cref="T:System.Threading.Tasks.ParallelOptions" /> 執行個體啟用的並行工作數目上限。</summary>
<returns>整數,表示平行處理原則的最大程度。</returns>
<exception cref="T:System.ArgumentOutOfRangeException">此屬性設定為零或小於 -1 的值。</exception>
</member>
<member name="P:System.Threading.Tasks.ParallelOptions.TaskScheduler">
<summary>取得或設定與這個 <see cref="T:System.Threading.Tasks.ParallelOptions" /> 執行個體關聯的 <see cref="T:System.Threading.Tasks.TaskScheduler" />。將這個屬性設為 null表示應該使用目前的排程器。</summary>
<returns>與這個執行個體相關聯的工作排程器。</returns>
</member>
</members>
</doc>