ParallelQuery Classe

Definição

Representa uma sequência paralela.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
Herança
ParallelQuery
Derivado
Implementações

Métodos

Equals(Object)

Determina se o objeto especificado é igual ao objeto atual.Determines whether the specified object is equal to the current object.

(Herdado de Object)
GetHashCode()

Serve como a função de hash padrão.Serves as the default hash function.

(Herdado de Object)
GetType()

Obtém o Type da instância atual.Gets the Type of the current instance.

(Herdado de Object)
MemberwiseClone()

Cria uma cópia superficial do Object atual.Creates a shallow copy of the current Object.

(Herdado de Object)
ToString()

Retorna uma cadeia de caracteres que representa o objeto atual.Returns a string that represents the current object.

(Herdado de Object)

Implantações explícitas de interface

IEnumerable.GetEnumerator()

Retorna um enumerador que itera pela sequência.Returns an enumerator that iterates through the sequence.

Métodos de Extensão

Cast<TResult>(IEnumerable)

Converte os elementos de um IEnumerable para o tipo especificado.Casts the elements of an IEnumerable to the specified type.

OfType<TResult>(IEnumerable)

Filtra os elementos de um IEnumerable com base em um tipo especificado.Filters the elements of an IEnumerable based on a specified type.

AsOrdered(ParallelQuery)

Permite o tratamento de uma fonte de dados como se estivesse ordenada, substituindo o padrão de fora de ordem.Enables treatment of a data source as if it were ordered, overriding the default of unordered. AsOrdered pode ser invocado somente em sequências não genéricas retornadas por AsParallel, ParallelEnumerable.Range e ParallelEnumerable.Repeat.AsOrdered may only be invoked on non-generic sequences returned by AsParallel, ParallelEnumerable.Range, and ParallelEnumerable.Repeat.

AsParallel(IEnumerable)

Habilita a paralelização de uma consulta.Enables parallelization of a query.

Cast<TResult>(ParallelQuery)

Converte os elementos de uma ParallelQuery para o tipo especificado.Converts the elements of a ParallelQuery to the specified type.

OfType<TResult>(ParallelQuery)

Filtra os elementos de uma ParallelQuery com base em um tipo especificado.Filters the elements of a ParallelQuery based on a specified type.

AsQueryable(IEnumerable)

Converte um IEnumerable em um IQueryable.Converts an IEnumerable to an IQueryable.

Aplica-se a

Confira também