Parallel::Invoke Method (ParallelOptions^, array<Action^>^)
Executes each of the provided actions, possibly in parallel, unless the operation is cancelled by the user.
Assembly: mscorlib (in mscorlib.dll)
public: static void Invoke( ParallelOptions^ parallelOptions, ... array<Action^>^ actions )
Parameters
- parallelOptions
-
Type:
System.Threading.Tasks::ParallelOptions^
An object that configures the behavior of this operation.
- actions
-
Type:
array<System::Action^>^
An array of actions to execute.
| Exception | Condition |
|---|---|
| OperationCanceledException | The CancellationToken in the parallelOptions is set. |
| ArgumentNullException | The actions argument is null. -or- The parallelOptions argument is null. |
| AggregateException | The exception that is thrown when any action in the actions array throws an exception. |
| ArgumentException | The actions array contains a null element. |
| ObjectDisposedException | The CancellationTokenSource associated with the CancellationToken in the parallelOptions has been disposed. |
This method can be used to execute a set of operations, potentially in parallel. The cancellation token passed in with the ParallelOptions structure enables the caller to cancel the entire operation. For more information, see Cancellation in Managed Threads.
No guarantees are made about the order in which the operations execute or whether they execute in parallel. This method does not return until each of the provided operations has completed, regardless of whether completion occurs due to normal or exceptional termination.
For more information, see How to: Use Parallel.Invoke to Execute Parallel Operations.
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Windows Phone
Available since 8.1