ParallelQuery Clase
Definición
Representa una secuencia 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
- Herencia
-
ParallelQuery
- Derivado
- Implementaciones
Métodos
Equals(Object) |
Determina si el objeto especificado es igual que el objeto actual.Determines whether the specified object is equal to the current object. (Heredado de Object) |
GetHashCode() |
Sirve como la función hash predeterminada.Serves as the default hash function. (Heredado de Object) |
GetType() |
Obtiene el Type de la instancia actual.Gets the Type of the current instance. (Heredado de Object) |
MemberwiseClone() |
Crea una copia superficial del Object actual.Creates a shallow copy of the current Object. (Heredado de Object) |
ToString() |
Devuelve una cadena que representa el objeto actual.Returns a string that represents the current object. (Heredado de Object) |
Implementaciones de interfaz explícitas
IEnumerable.GetEnumerator() |
Devuelve un enumerador que itera por la secuencia.Returns an enumerator that iterates through the sequence. |
Métodos de extensión
Cast<TResult>(IEnumerable) |
Convierte los elementos de IEnumerable en el tipo especificado.Casts the elements of an IEnumerable to the specified type. |
OfType<TResult>(IEnumerable) |
Filtra los elementos de IEnumerable en función de un tipo especificado.Filters the elements of an IEnumerable based on a specified type. |
AsOrdered(ParallelQuery) |
Habilita el tratamiento de un origen de datos como si estuviera ordenado, con lo que se invalida el valor predeterminado de no ordenado.Enables treatment of a data source as if it were ordered, overriding the default of unordered. AsOrdered solo se puede invocar en secuencias no genéricas devueltas por AsParallel, ParallelEnumerable.Range y ParallelEnumerable.Repeat.AsOrdered may only be invoked on non-generic sequences returned by AsParallel, ParallelEnumerable.Range, and ParallelEnumerable.Repeat. |
AsParallel(IEnumerable) |
Habilita la paralelización de una consulta.Enables parallelization of a query. |
Cast<TResult>(ParallelQuery) |
Convierte los elementos de ParallelQuery en el tipo especificado.Converts the elements of a ParallelQuery to the specified type. |
OfType<TResult>(ParallelQuery) |
Filtra los elementos de ParallelQuery en función de un tipo especificado.Filters the elements of a ParallelQuery based on a specified type. |
AsQueryable(IEnumerable) |
Convierte una interfaz IEnumerable en IQueryable.Converts an IEnumerable to an IQueryable. |