ParallelEnumerable.OfType<TResult>(ParallelQuery) Method

Definition

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

public:
generic <typename TResult>
[System::Runtime::CompilerServices::Extension]
 static System::Linq::ParallelQuery<TResult> ^ OfType(System::Linq::ParallelQuery ^ source);
public static System.Linq.ParallelQuery<TResult> OfType<TResult> (this System.Linq.ParallelQuery source);
static member OfType : System.Linq.ParallelQuery -> System.Linq.ParallelQuery<'Result>
<Extension()>
Public Function OfType(Of TResult) (source As ParallelQuery) As ParallelQuery(Of TResult)

Type Parameters

TResult

The type to filter the elements of the sequence on.

Parameters

source
ParallelQuery

The sequence with elements to filter.

Returns

ParallelQuery<TResult>

A sequence that contains elements from the input sequence filtered by type.

Exceptions

source is a null reference (Nothing in Visual Basic).

One or more exceptions occurred during the evaluation of the query.

Applies to

See also