Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

OrderablePartitioner<TSource>::GetDynamicPartitions Method ()

.NET Framework (current version)
 

Creates an object that can partition the underlying collection into a variable number of partitions.

Namespace:   System.Collections.Concurrent
Assembly:  mscorlib (in mscorlib.dll)

public:
virtual IEnumerable<TSource>^ GetDynamicPartitions() override

Return Value

Type: System.Collections.Generic::IEnumerable<TSource>^

An object that can create partitions over the underlying data source.

Exception Condition
NotSupportedException

Dynamic partitioning is not supported by the base class. It must be implemented in derived classes.

The returned object implements the System.Collections.Generic::IEnumerable<T> interface. Calling GetEnumerator on the object creates another partition over the sequence.

The default implementation provides the same behavior as GetOrderableDynamicPartitions except that the returned set of partitions does not provide the keys for the elements.

The GetDynamicPartitions method is only supported if the SupportsDynamicPartitions property returns true.

For more information, see Custom Partitioners for PLINQ and TPL.

Universal Windows Platform
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Windows Phone
Available since 8.1
Return to top
Show:
© 2017 Microsoft