ParallelQuery Class

Definition

Represents a parallel sequence.

public ref class ParallelQuery : System::Collections::IEnumerable
public class ParallelQuery : System.Collections.IEnumerable
type ParallelQuery = class
    interface IEnumerable
Public Class ParallelQuery
Implements IEnumerable
Inheritance
ParallelQuery
Derived
Implements

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Explicit Interface Implementations

IEnumerable.GetEnumerator()

Returns an enumerator that iterates through the sequence.

Extension Methods

Cast<TResult>(IEnumerable)

Casts the elements of an IEnumerable to the specified type.

OfType<TResult>(IEnumerable)

Filters the elements of an IEnumerable based on a specified type.

AsOrdered(ParallelQuery)

Enables treatment of a data source as if it were ordered, overriding the default of unordered. AsOrdered may only be invoked on non-generic sequences returned by AsParallel, ParallelEnumerable.Range, and ParallelEnumerable.Repeat.

AsParallel(IEnumerable)

Enables parallelization of a query.

Cast<TResult>(ParallelQuery)

Converts the elements of a ParallelQuery to the specified type.

OfType<TResult>(ParallelQuery)

Filters the elements of a ParallelQuery based on a specified type.

AsQueryable(IEnumerable)

Converts an IEnumerable to an IQueryable.

Applies to

See also