ParallelEnumerable::AsOrdered<TSource> Method (ParallelQuery<TSource>^)
Enables treatment of a data source as if it were ordered, overriding the default of unordered. AsOrdered may only be invoked on generic sequences returned by AsParallel, ParallelEnumerable.Range, and ParallelEnumerable.Repeat.
Assembly: System.Core (in System.Core.dll)
public: generic<typename TSource> [ExtensionAttribute] static ParallelQuery<TSource>^ AsOrdered( ParallelQuery<TSource>^ source )
Parameters
- source
-
Type:
System.Linq::ParallelQuery<TSource>^
The input sequence.
Return Value
Type: System.Linq::ParallelQuery<TSource>^The source sequence which will maintain the original ordering in the subsequent query operators.
Type Parameters
- TSource
The type of elements of source.
| Exception | Condition |
|---|---|
| ArgumentNullException | source is a null reference (Nothing in Visual Basic). |
| InvalidOperationException | Thrown if source contains no elements -or- if source is not one of AsParallel, ParallelEnumerable.Range, or ParallelEnumerable.Repeat. |
A natural tension exists between performance and preserving order in parallel processing. By default, a parallelized query behaves as if the ordering of the results is arbitrary unless AsOrdered is applied or there is an explicit OrderBy operator in the query. For more information, see Order Preservation in PLINQ.
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Windows Phone
Available since 8.1