The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
ParallelEnumerable::OfType<TResult> Method (ParallelQuery^)
.NET Framework (current version)
Filters the elements of a ParallelQuery based on a specified type.
Assembly: System.Core (in System.Core.dll)
public: generic<typename TResult> [ExtensionAttribute] static ParallelQuery<TResult>^ OfType( ParallelQuery^ source )
Parameters
- source
-
Type:
System.Linq::ParallelQuery^
The sequence whose elements to filter.
Return Value
Type: System.Linq::ParallelQuery<TResult>^A sequence that contains elements from the input sequence of type .
Type Parameters
- TResult
The type to filter the elements of the sequence on.
| Exception | Condition |
|---|---|
| ArgumentNullException | source is a null reference (Nothing in Visual Basic). |
| OperationCanceledException | The query was canceled with the token passed in through WithCancellation. |
| AggregateException | One or more exceptions occurred during the evaluation of the query. |
Universal Windows Platform
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Windows Phone
Available since 8.1
Show: