ParallelEnumerable.OfType<TResult>(ParallelQuery) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
A sequence that contains elements from the input sequence filtered by type.
Exceptions
source
is a null reference (Nothing in Visual Basic).
The query was canceled with the token passed in through WithCancellation<TSource>(ParallelQuery<TSource>, CancellationToken).
One or more exceptions occurred during the evaluation of the query.