ParallelExecutionMode Enumeration
.NET Framework 4.5
The query execution mode is a hint that specifies how the system should handle performance trade-offs when parallelizing queries.
Namespace: System.Linq
Assembly: System.Core (in System.Core.dll)
| Member name | Description | |
|---|---|---|
![]() ![]() | Default | This is the default setting. PLINQ will examine the query's structure and will only parallelize the query if will likely result in speedup. If the query structure indicates that speedup is not likely to be obtained, then PLINQ will execute the query as an ordinary LINQ to Objects query. |
![]() ![]() | ForceParallelism | Parallelize the entire query, even if that means using high-overhead algorithms. Use this flag in cases where you know that parallel execution of the query will result in speedup, but PLINQ in the Default mode would execute it as sequential. |
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

