|
| Name | Description |
|---|
.gif) .gif) | Aggregate<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, TSource, TSource>)>)) | Applies in parallel an accumulator function over a sequence. |
.gif) .gif) | Aggregate<(Of <(TSource, TAccumulate>)>)(ParallelQuery<(Of <(TSource>)>), TAccumulate, Func<(Of <(TAccumulate, TSource, TAccumulate>)>)) | Applies in parallel an accumulator function over a sequence. The specified seed value is used as the initial accumulator value. |
.gif) .gif) | Aggregate<(Of <(TSource, TAccumulate, TResult>)>)(ParallelQuery<(Of <(TSource>)>), TAccumulate, Func<(Of <(TAccumulate, TSource, TAccumulate>)>), Func<(Of <(TAccumulate, TResult>)>)) | Applies in parallel an accumulator function over a sequence. The specified seed value is used as the initial accumulator value, and the specified function is used to select the result value. |
.gif) .gif) | Aggregate<(Of <(TSource, TAccumulate, TResult>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TAccumulate>)>), Func<(Of <(TAccumulate, TSource, TAccumulate>)>), Func<(Of <(TAccumulate, TAccumulate, TAccumulate>)>), Func<(Of <(TAccumulate, TResult>)>)) | Applies in parallel an accumulator function over a sequence. This overload is not available in the sequential implementation. |
.gif) .gif) | Aggregate<(Of <(TSource, TAccumulate, TResult>)>)(ParallelQuery<(Of <(TSource>)>), TAccumulate, Func<(Of <(TAccumulate, TSource, TAccumulate>)>), Func<(Of <(TAccumulate, TAccumulate, TAccumulate>)>), Func<(Of <(TAccumulate, TResult>)>)) | Applies in parallel an accumulator function over a sequence. This overload is not available in the sequential implementation. |
.gif) .gif) | All<(Of <(TSource>)>) | Determines in parallel whether all elements of a sequence satisfy a condition. |
.gif) .gif) | Any<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>)) | Determines whether a parallel sequence contains any elements. |
.gif) .gif) | Any<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Boolean>)>)) | Determines in parallel whether any element of a sequence satisfies a condition. |
.gif) .gif) | AsEnumerable<(Of <(TSource>)>) | Converts a ParallelQuery<(Of <(TSource>)>) into an IEnumerable<(Of <(T>)>) to force sequential evaluation of the query. |
.gif) .gif) | AsOrdered(ParallelQuery) | Enables treatment of a data source as if it was ordered, overriding the default of unordered. AsOrdered may only be invoked on non-generic sequences returned by AsParallel, ParallelEnumerable.Range, and ParallelEnumerable.Repeat. |
.gif) .gif) | AsOrdered<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>)) | Enables treatment of a data source as if it was ordered, overriding the default of unordered. AsOrdered may only be invoked on generic sequences returned by AsParallel, ParallelEnumerable.Range, and ParallelEnumerable.Repeat. |
.gif) .gif) | AsParallel(IEnumerable) | Enables parallelization of a query. |
.gif) .gif) | AsParallel<(Of <(TSource>)>)(IEnumerable<(Of <(TSource>)>)) | Enables parallelization of a query. |
.gif) .gif) | AsParallel<(Of <(TSource>)>)(Partitioner<(Of <(TSource>)>)) | Enables parallelization of a query, as sourced by a custom partitioner that is responsible for splitting the input sequence into partitions. |
.gif) .gif) | AsSequential<(Of <(TSource>)>) | Converts a ParallelQuery<(Of <(TSource>)>) into an IEnumerable<(Of <(T>)>) to force sequential evaluation of the query. |
.gif) .gif) | AsUnordered<(Of <(TSource>)>) | Allows an intermediate query to be treated as if no ordering is implied among the elements. |
.gif) .gif) | Average(ParallelQuery<(Of <(Decimal>)>)) | Computes in parallel the average of a sequence of values. |
.gif) .gif) | Average(ParallelQuery<(Of <(Nullable<(Of <(Decimal>)>)>)>)) | Computes in parallel the average of a sequence of values. |
.gif) .gif) | Average(ParallelQuery<(Of <(Double>)>)) | Computes in parallel the average of a sequence of values. |
.gif) .gif) | Average(ParallelQuery<(Of <(Nullable<(Of <(Double>)>)>)>)) | Computes in parallel the average of a sequence of values. |
.gif) .gif) | Average(ParallelQuery<(Of <(Int32>)>)) | Computes in parallel the average of a sequence of values. |
.gif) .gif) | Average(ParallelQuery<(Of <(Nullable<(Of <(Int32>)>)>)>)) | Computes in parallel the average of a sequence of values. |
.gif) .gif) | Average(ParallelQuery<(Of <(Int64>)>)) | Computes in parallel the average of a sequence of values. |
.gif) .gif) | Average(ParallelQuery<(Of <(Nullable<(Of <(Int64>)>)>)>)) | Computes in parallel the average of a sequence of values. |
.gif) .gif) | Average(ParallelQuery<(Of <(Nullable<(Of <(Single>)>)>)>)) | Computes in parallel the average of a sequence of values. |
.gif) .gif) | Average(ParallelQuery<(Of <(Single>)>)) | Computes in parallel the average of a sequence of values. |
.gif) .gif) | Average<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Decimal>)>)) | Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. |
.gif) .gif) | Average<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Double>)>)) | Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. |
.gif) .gif) | Average<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Int32>)>)) | Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. |
.gif) .gif) | Average<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Int64>)>)) | Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. |
.gif) .gif) | Average<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Nullable<(Of <(Decimal>)>)>)>)) | Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. |
.gif) .gif) | Average<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Nullable<(Of <(Double>)>)>)>)) | Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. |
.gif) .gif) | Average<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Nullable<(Of <(Int32>)>)>)>)) | Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. |
.gif) .gif) | Average<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Nullable<(Of <(Int64>)>)>)>)) | Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. |
.gif) .gif) | Average<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Nullable<(Of <(Single>)>)>)>)) | Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. |
.gif) .gif) | Average<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Single>)>)) | Computes in parallel the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. |
.gif) .gif) | Cast<(Of <(TResult>)>) | Converts the elements of a ParallelQuery to the specified type. |
.gif) .gif) | Concat<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), IEnumerable<(Of <(TSource>)>)) | Obsolete. This Concat overload should never be called. This method is marked as obsolete and always throws NotSupportedException when called. |
.gif) .gif) | Concat<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), ParallelQuery<(Of <(TSource>)>)) | Concatenates two parallel sequences. |
.gif) .gif) | Contains<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), TSource) | Determines in parallel whether a sequence contains a specified element by using the default equality comparer. |
.gif) .gif) | Contains<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), TSource, IEqualityComparer<(Of <(TSource>)>)) | Determines in parallel whether a sequence contains a specified element by using a specified IEqualityComparer<(Of <(T>)>). |
.gif) .gif) | Count<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>)) | Returns the number of elements in a parallel sequence. |
.gif) .gif) | Count<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Boolean>)>)) | Returns a number that represents how many elements in the specified parallel sequence satisfy a condition. |
.gif) .gif) | DefaultIfEmpty<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>)) | Returns the elements of the specified parallel sequence or the type parameter's default value in a singleton collection if the sequence is empty. |
.gif) .gif) | DefaultIfEmpty<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), TSource) | Returns the elements of the specified parallel sequence or the specified value in a singleton collection if the sequence is empty. |
.gif) .gif) | Distinct<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>)) | Returns distinct elements from a parallel sequence by using the default equality comparer to compare values. |
.gif) .gif) | Distinct<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), IEqualityComparer<(Of <(TSource>)>)) | Returns distinct elements from a parallel sequence by using a specified IEqualityComparer<(Of <(T>)>) to compare values. |
.gif) .gif) | ElementAt<(Of <(TSource>)>) | Returns the element at a specified index in a parallel sequence. |
.gif) .gif) | ElementAtOrDefault<(Of <(TSource>)>) | Returns the element at a specified index in a parallel sequence or a default value if the index is out of range. |
.gif) .gif) | Empty<(Of <(TResult>)>) | Returns an empty ParallelQuery{TResult} that has the specified type argument. |
.gif) .gif) | Except<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), IEnumerable<(Of <(TSource>)>)) | Obsolete. This Except overload should never be called. This method is marked as obsolete and always throws NotSupportedException when called. |
.gif) .gif) | Except<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), ParallelQuery<(Of <(TSource>)>)) | Produces the set difference of two parallel sequences by using the default equality comparer to compare values. |
.gif) .gif) | Except<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), IEnumerable<(Of <(TSource>)>), IEqualityComparer<(Of <(TSource>)>)) | Obsolete. This Except overload should never be called. This method is marked as obsolete and always throws NotSupportedException when called. |
.gif) .gif) | Except<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), ParallelQuery<(Of <(TSource>)>), IEqualityComparer<(Of <(TSource>)>)) | Produces the set difference of two parallel sequences by using the specified IEqualityComparer<(Of <(T>)>) to compare values. |
.gif) .gif) | First<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>)) | Returns the first element of a parallel sequence. |
.gif) .gif) | First<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Boolean>)>)) | Returns the first element in a parallel sequence that satisfies a specified condition. |
.gif) .gif) | FirstOrDefault<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>)) | Returns the first element of a parallel sequence, or a default value if the sequence contains no elements. |
.gif) .gif) | FirstOrDefault<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Boolean>)>)) | Returns the first element of the parallel sequence that satisfies a condition or a default value if no such element is found. |
.gif) .gif) | ForAll<(Of <(TSource>)>) | Invokes in parallel the specified action for each element in the source. |
.gif) .gif) | GroupBy<(Of <(TSource, TKey>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, TKey>)>)) | Groups in parallel the elements of a sequence according to a specified key selector function. |
.gif) .gif) | GroupBy<(Of <(TSource, TKey>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, TKey>)>), IEqualityComparer<(Of <(TKey>)>)) | Groups in parallel the elements of a sequence according to a specified key selector function and compares the keys by using a specified IComparer<(Of <(T>)>). |
.gif) .gif) | GroupBy<(Of <(TSource, TKey, TElement>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, TKey>)>), Func<(Of <(TSource, TElement>)>)) | Groups in parallel the elements of a sequence according to a specified key selector function and projects the elements for each group by using a specified function. |
.gif) .gif) | GroupBy<(Of <(TSource, TKey, TResult>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, TKey>)>), Func<(Of <(TKey, IEnumerable<(Of <(TSource>)>), TResult>)>)) | Groups in parallel the elements of a sequence according to a specified key selector function and creates a result value from each group and its key. |
.gif) .gif) | GroupBy<(Of <(TSource, TKey, TElement>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, TKey>)>), Func<(Of <(TSource, TElement>)>), IEqualityComparer<(Of <(TKey>)>)) | Groups in parallel the elements of a sequence according to a key selector function. The keys are compared by using a comparer and each group's elements are projected by using a specified function. |
.gif) .gif) | GroupBy<(Of <(TSource, TKey, TResult>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, TKey>)>), Func<(Of <(TKey, IEnumerable<(Of <(TSource>)>), TResult>)>), IEqualityComparer<(Of <(TKey>)>)) | Groups in parallel the elements of a sequence according to a specified key selector function and creates a result value from each group and its key. The keys are compared by using a specified comparer. |
.gif) .gif) | GroupBy<(Of <(TSource, TKey, TElement, TResult>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, TKey>)>), Func<(Of <(TSource, TElement>)>), Func<(Of <(TKey, IEnumerable<(Of <(TElement>)>), TResult>)>)) | Groups in parallel the elements of a sequence according to a specified key selector function and creates a result value from each group and its key. The elements of each group are projected by using a specified function. |
.gif) .gif) | GroupBy<(Of <(TSource, TKey, TElement, TResult>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, TKey>)>), Func<(Of <(TSource, TElement>)>), Func<(Of <(TKey, IEnumerable<(Of <(TElement>)>), TResult>)>), IEqualityComparer<(Of <(TKey>)>)) | Groups the elements of a sequence according to a specified key selector function and creates a result value from each group and its key. Key values are compared by using a specified comparer, and the elements of each group are projected by using a specified function. |
.gif) .gif) | GroupJoin<(Of <(TOuter, TInner, TKey, TResult>)>)(ParallelQuery<(Of <(TOuter>)>), IEnumerable<(Of <(TInner>)>), Func<(Of <(TOuter, TKey>)>), Func<(Of <(TInner, TKey>)>), Func<(Of <(TOuter, IEnumerable<(Of <(TInner>)>), TResult>)>)) | Obsolete. This GroupJoin overload should never be called. This method is marked as obsolete and always throws NotSupportedException when called. |
.gif) .gif) | GroupJoin<(Of <(TOuter, TInner, TKey, TResult>)>)(ParallelQuery<(Of <(TOuter>)>), ParallelQuery<(Of <(TInner>)>), Func<(Of <(TOuter, TKey>)>), Func<(Of <(TInner, TKey>)>), Func<(Of <(TOuter, IEnumerable<(Of <(TInner>)>), TResult>)>)) | Correlates in parallel the elements of two sequences based on equality of keys and groups the results. The default equality comparer is used to compare keys. |
.gif) .gif) | GroupJoin<(Of <(TOuter, TInner, TKey, TResult>)>)(ParallelQuery<(Of <(TOuter>)>), IEnumerable<(Of <(TInner>)>), Func<(Of <(TOuter, TKey>)>), Func<(Of <(TInner, TKey>)>), Func<(Of <(TOuter, IEnumerable<(Of <(TInner>)>), TResult>)>), IEqualityComparer<(Of <(TKey>)>)) | Obsolete. This GroupJoin overload should never be called. This method is marked as obsolete and always throws NotSupportedException when called. |
.gif) .gif) | GroupJoin<(Of <(TOuter, TInner, TKey, TResult>)>)(ParallelQuery<(Of <(TOuter>)>), ParallelQuery<(Of <(TInner>)>), Func<(Of <(TOuter, TKey>)>), Func<(Of <(TInner, TKey>)>), Func<(Of <(TOuter, IEnumerable<(Of <(TInner>)>), TResult>)>), IEqualityComparer<(Of <(TKey>)>)) | Correlates in parallel the elements of two sequences based on key equality and groups the results. A specified IEqualityComparer<(Of <(T>)>) is used to compare keys. |
.gif) .gif) | Intersect<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), IEnumerable<(Of <(TSource>)>)) | Obsolete. This Intersect overload should never be called. This method is marked as obsolete and always throws NotSupportedException when called. |
.gif) .gif) | Intersect<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), ParallelQuery<(Of <(TSource>)>)) | Produces the set intersection of two parallel sequences by using the default equality comparer to compare values. |
.gif) .gif) | Intersect<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), IEnumerable<(Of <(TSource>)>), IEqualityComparer<(Of <(TSource>)>)) | Obsolete. This Intersect overload should never be called. This method is marked as obsolete and always throws NotSupportedException when called. |
.gif) .gif) | Intersect<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), ParallelQuery<(Of <(TSource>)>), IEqualityComparer<(Of <(TSource>)>)) | Produces the set intersection of two parallel sequences by using the specified IEqualityComparer{T} to compare values. |
.gif) .gif) | Join<(Of <(TOuter, TInner, TKey, TResult>)>)(ParallelQuery<(Of <(TOuter>)>), IEnumerable<(Of <(TInner>)>), Func<(Of <(TOuter, TKey>)>), Func<(Of <(TInner, TKey>)>), Func<(Of <(TOuter, TInner, TResult>)>)) | Obsolete. This Join overload should never be called. This method is marked as obsolete and always throws NotSupportedException when invoked. |
.gif) .gif) | Join<(Of <(TOuter, TInner, TKey, TResult>)>)(ParallelQuery<(Of <(TOuter>)>), ParallelQuery<(Of <(TInner>)>), Func<(Of <(TOuter, TKey>)>), Func<(Of <(TInner, TKey>)>), Func<(Of <(TOuter, TInner, TResult>)>)) | Correlates in parallel the elements of two sequences based on matching keys. The default equality comparer is used to compare keys. |
.gif) .gif) | Join<(Of <(TOuter, TInner, TKey, TResult>)>)(ParallelQuery<(Of <(TOuter>)>), IEnumerable<(Of <(TInner>)>), Func<(Of <(TOuter, TKey>)>), Func<(Of <(TInner, TKey>)>), Func<(Of <(TOuter, TInner, TResult>)>), IEqualityComparer<(Of <(TKey>)>)) | Obsolete. This Join overload should never be called. This method is marked as obsolete and always throws NotSupportedException when invoked. |
.gif) .gif) | Join<(Of <(TOuter, TInner, TKey, TResult>)>)(ParallelQuery<(Of <(TOuter>)>), ParallelQuery<(Of <(TInner>)>), Func<(Of <(TOuter, TKey>)>), Func<(Of <(TInner, TKey>)>), Func<(Of <(TOuter, TInner, TResult>)>), IEqualityComparer<(Of <(TKey>)>)) | Correlates in parallel the elements of two sequences based on matching keys. A specified IEqualityComparer<(Of <(T>)>) is used to compare keys. |
.gif) .gif) | Last<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>)) | Returns the last element of a parallel sequence. |
.gif) .gif) | Last<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Boolean>)>)) | Returns the last element of a parallel sequence that satisfies a specified condition. |
.gif) .gif) | LastOrDefault<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>)) | Returns the last element of a parallel sequence, or a default value if the sequence contains no elements. |
.gif) .gif) | LastOrDefault<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Boolean>)>)) | Returns the last element of a parallel sequence that satisfies a condition, or a default value if no such element is found. |
.gif) .gif) | LongCount<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>)) | Returns an Int64 that represents the total number of elements in a parallel sequence. |
.gif) .gif) | LongCount<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Boolean>)>)) | Returns an Int64 that represents how many elements in a parallel sequence satisfy a condition. |
.gif) .gif) | Max(ParallelQuery<(Of <(Decimal>)>)) | Returns the maximum value in a parallel sequence of values. |
.gif) .gif) | Max(ParallelQuery<(Of <(Nullable<(Of <(Decimal>)>)>)>)) | Returns the maximum value in a parallel sequence of values. |
.gif) .gif) | Max(ParallelQuery<(Of <(Double>)>)) | Returns the maximum value in a parallel sequence of values. |
.gif) .gif) | Max(ParallelQuery<(Of <(Nullable<(Of <(Double>)>)>)>)) | Returns the maximum value in a parallel sequence of values. |
.gif) .gif) | Max(ParallelQuery<(Of <(Int32>)>)) | Returns the maximum value in a parallel sequence of values. |
.gif) .gif) | Max(ParallelQuery<(Of <(Nullable<(Of <(Int32>)>)>)>)) | Returns the maximum value in a parallel sequence of values. |
.gif) .gif) | Max(ParallelQuery<(Of <(Int64>)>)) | Returns the maximum value in a parallel sequence of values. |
.gif) .gif) | Max(ParallelQuery<(Of <(Nullable<(Of <(Int64>)>)>)>)) | Returns the maximum value in a parallel sequence of values. |
.gif) .gif) | Max(ParallelQuery<(Of <(Nullable<(Of <(Single>)>)>)>)) | Returns the maximum value in a parallel sequence of values. |
.gif) .gif) | Max(ParallelQuery<(Of <(Single>)>)) | Returns the maximum value in a parallel sequence of values. |
.gif) .gif) | Max<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>)) | Returns the maximum value in a parallel sequence of values. |
.gif) .gif) | Max<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Decimal>)>)) | Invokes in parallel a transform function on each element of a sequence and returns the maximum value. |
.gif) .gif) | Max<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Double>)>)) | Invokes in parallel a transform function on each element of a sequence and returns the maximum value. |
.gif) .gif) | Max<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Int32>)>)) | Invokes in parallel a transform function on each element of a sequence and returns the maximum value. |
.gif) .gif) | Max<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Int64>)>)) | Invokes in parallel a transform function on each element of a sequence and returns the maximum value. |
.gif) .gif) | Max<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Nullable<(Of <(Decimal>)>)>)>)) | Invokes in parallel a transform function on each element of a sequence and returns the maximum value. |
.gif) .gif) | Max<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Nullable<(Of <(Double>)>)>)>)) | Invokes in parallel a transform function on each element of a sequence and returns the maximum value. |
.gif) .gif) | Max<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Nullable<(Of <(Int32>)>)>)>)) | Invokes in parallel a transform function on each element of a sequence and returns the maximum value. |
.gif) .gif) | Max<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Nullable<(Of <(Int64>)>)>)>)) | Invokes in parallel a transform function on each element of a sequence and returns the maximum value. |
.gif) .gif) | Max<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Nullable<(Of <(Single>)>)>)>)) | Invokes in parallel a transform function on each element of a sequence and returns the maximum value. |
.gif) .gif) | Max<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Single>)>)) | Invokes in parallel a transform function on each element of a sequence and returns the maximum value. |
.gif) .gif) | Max<(Of <(TSource, TResult>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, TResult>)>)) | Invokes in parallel a transform function on each element of a sequence and returns the maximum value. |
.gif) .gif) | Min(ParallelQuery<(Of <(Decimal>)>)) | Returns the minimum value in a parallel sequence of values. |
.gif) .gif) | Min(ParallelQuery<(Of <(Nullable<(Of <(Decimal>)>)>)>)) | Returns the minimum value in a parallel sequence of values. |
.gif) .gif) | Min(ParallelQuery<(Of <(Double>)>)) | Returns the minimum value in a parallel sequence of values. |
.gif) .gif) | Min(ParallelQuery<(Of <(Nullable<(Of <(Double>)>)>)>)) | Returns the minimum value in a parallel sequence of values. |
.gif) .gif) | Min(ParallelQuery<(Of <(Int32>)>)) | Returns the minimum value in a parallel sequence of values. |
.gif) .gif) | Min(ParallelQuery<(Of <(Nullable<(Of <(Int32>)>)>)>)) | Returns the minimum value in a parallel sequence of values. |
.gif) .gif) | Min(ParallelQuery<(Of <(Int64>)>)) | Returns the minimum value in a parallel sequence of values. |
.gif) .gif) | Min(ParallelQuery<(Of <(Nullable<(Of <(Int64>)>)>)>)) | Returns the minimum value in a parallel sequence of values. |
.gif) .gif) | Min(ParallelQuery<(Of <(Nullable<(Of <(Single>)>)>)>)) | Returns the minimum value in a parallel sequence of values. |
.gif) .gif) | Min(ParallelQuery<(Of <(Single>)>)) | Returns the minimum value in a parallel sequence of values. |
.gif) .gif) | Min<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>)) | Returns the minimum value in a parallel sequence of values. |
.gif) .gif) | Min<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Decimal>)>)) | Invokes in parallel a transform function on each element of a sequence and returns the minimum value. |
.gif) .gif) | Min<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Double>)>)) | Invokes in parallel a transform function on each element of a sequence and returns the minimum value. |
.gif) .gif) | Min<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Int32>)>)) | Invokes in parallel a transform function on each element of a sequence and returns the minimum value. |
.gif) .gif) | Min<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Int64>)>)) | Invokes in parallel a transform function on each element of a sequence and returns the minimum value. |
.gif) .gif) | Min<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Nullable<(Of <(Decimal>)>)>)>)) | Invokes in parallel a transform function on each element of a sequence and returns the minimum value. |
.gif) .gif) | Min<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Nullable<(Of <(Double>)>)>)>)) | Invokes in parallel a transform function on each element of a sequence and returns the minimum value. |
.gif) .gif) | Min<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Nullable<(Of <(Int32>)>)>)>)) | Invokes in parallel a transform function on each element of a sequence and returns the minimum value. |
.gif) .gif) | Min<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Nullable<(Of <(Int64>)>)>)>)) | Invokes in parallel a transform function on each element of a sequence and returns the minimum value. |
.gif) .gif) | Min<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Nullable<(Of <(Single>)>)>)>)) | Invokes in parallel a transform function on each element of a sequence and returns the minimum value. |
.gif) .gif) | Min<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Single>)>)) | Invokes in parallel a transform function on each element of a sequence and returns the minimum value. |
.gif) .gif) | Min<(Of <(TSource, TResult>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, TResult>)>)) | Invokes in parallel a transform function on each element of a sequence and returns the minimum value. |
.gif) .gif) | OfType<(Of <(TResult>)>) | Filters the elements of a ParallelQuery based on a specified type. |
.gif) .gif) | OrderBy<(Of <(TSource, TKey>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, TKey>)>)) | Sorts in parallel the elements of a sequence in ascending order according to a key. |
.gif) .gif) | OrderBy<(Of <(TSource, TKey>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, TKey>)>), IComparer<(Of <(TKey>)>)) | Sorts in parallel the elements of a sequence in ascending order by using a specified comparer. |
.gif) .gif) | OrderByDescending<(Of <(TSource, TKey>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, TKey>)>)) | Sorts in parallel the elements of a sequence in descending order according to a key. |
.gif) .gif) | OrderByDescending<(Of <(TSource, TKey>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, TKey>)>), IComparer<(Of <(TKey>)>)) | Sorts the elements of a sequence in descending order by using a specified comparer. |
.gif) .gif) | Range | Generates a parallel sequence of integral numbers within a specified range. |
.gif) .gif) | Repeat<(Of <(TResult>)>) | Generates a parallel sequence that contains one repeated value. |
.gif) .gif) | Reverse<(Of <(TSource>)>) | Inverts the order of the elements in a parallel sequence. |
.gif) .gif) | Select<(Of <(TSource, TResult>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, TResult>)>)) | Projects in parallel each element of a sequence into a new form. |
.gif) .gif) | Select<(Of <(TSource, TResult>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Int32, TResult>)>)) | Projects in parallel each element of a sequence into a new form by incorporating the element's index. |
.gif) .gif) | SelectMany<(Of <(TSource, TResult>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, IEnumerable<(Of <(TResult>)>)>)>)) | Projects in parallel each element of a sequence to an IEnumerable<(Of <(T>)>) and flattens the resulting sequences into one sequence. |
.gif) .gif) | SelectMany<(Of <(TSource, TResult>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Int32, IEnumerable<(Of <(TResult>)>)>)>)) | Projects in parallel each element of a sequence to an IEnumerable<(Of <(T>)>), and flattens the resulting sequences into one sequence. The index of each source element is used in the projected form of that element. |
.gif) .gif) | SelectMany<(Of <(TSource, TCollection, TResult>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, IEnumerable<(Of <(TCollection>)>)>)>), Func<(Of <(TSource, TCollection, TResult>)>)) | Projects each element of a sequence to an IEnumerable<(Of <(T>)>), flattens the resulting sequences into one sequence, and invokes a result selector function on each element therein. |
.gif) .gif) | SelectMany<(Of <(TSource, TCollection, TResult>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Int32, IEnumerable<(Of <(TCollection>)>)>)>), Func<(Of <(TSource, TCollection, TResult>)>)) | Projects each element of a sequence to an IEnumerable<(Of <(T>)>), flattens the resulting sequences into one sequence, and invokes a result selector function on each element therein. The index of each source element is used in the intermediate projected form of that element. |
.gif) .gif) | SequenceEqual<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), IEnumerable<(Of <(TSource>)>)) | Obsolete. This SequenceEqual overload should never be called. This method is marked as obsolete and always throws NotSupportedException when called. |
.gif) .gif) | SequenceEqual<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), ParallelQuery<(Of <(TSource>)>)) | Determines whether two parallel sequences are equal by comparing the elements by using the default equality comparer for their type. |
.gif) .gif) | SequenceEqual<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), IEnumerable<(Of <(TSource>)>), IEqualityComparer<(Of <(TSource>)>)) | Obsolete. This SequenceEqual overload should never be called. This method is marked as obsolete and always throws NotSupportedException when called. |
.gif) .gif) | SequenceEqual<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), ParallelQuery<(Of <(TSource>)>), IEqualityComparer<(Of <(TSource>)>)) | Determines whether two parallel sequences are equal by comparing their elements by using a specified IEqualityComparer{T}. |
.gif) .gif) | Single<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>)) | Returns the only element of a parallel sequence, and throws an exception if there is not exactly one element in the sequence. |
.gif) .gif) | Single<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Boolean>)>)) | Returns the only element of a parallel sequence that satisfies a specified condition, and throws an exception if more than one such element exists. |
.gif) .gif) | SingleOrDefault<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>)) | Returns the only element of a parallel sequence, or a default value if the sequence is empty; this method throws an exception if there is more than one element in the sequence. |
.gif) .gif) | SingleOrDefault<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Boolean>)>)) | Returns the only element of a parallel sequence that satisfies a specified condition or a default value if no such element exists; this method throws an exception if more than one element satisfies the condition. |
.gif) .gif) | Skip<(Of <(TSource>)>) | Bypasses a specified number of elements in a parallel sequence and then returns the remaining elements. |
.gif) .gif) | SkipWhile<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Boolean>)>)) | Bypasses elements in a parallel sequence as long as a specified condition is true and then returns the remaining elements. |
.gif) .gif) | SkipWhile<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Int32, Boolean>)>)) | Bypasses elements in a parallel sequence as long as a specified condition is true and then returns the remaining elements. The element's index is used in the logic of the predicate function. |
.gif) .gif) | Sum(ParallelQuery<(Of <(Decimal>)>)) | Computes in parallel the sum of a sequence of values. |
.gif) .gif) | Sum(ParallelQuery<(Of <(Nullable<(Of <(Decimal>)>)>)>)) | Computes in parallel the sum of a sequence of values. |
.gif) .gif) | Sum(ParallelQuery<(Of <(Double>)>)) | Computes in parallel the sum of a sequence of values. |
.gif) .gif) | Sum(ParallelQuery<(Of <(Nullable<(Of <(Double>)>)>)>)) | Computes in parallel the sum of a sequence of values. |
.gif) .gif) | Sum(ParallelQuery<(Of <(Int32>)>)) | Computes in parallel the sum of a sequence of values. |
.gif) .gif) | Sum(ParallelQuery<(Of <(Nullable<(Of <(Int32>)>)>)>)) | Computes in parallel the sum of a sequence of values. |
.gif) .gif) | Sum(ParallelQuery<(Of <(Int64>)>)) | Computes in parallel the sum of a sequence of values. |
.gif) .gif) | Sum(ParallelQuery<(Of <(Nullable<(Of <(Int64>)>)>)>)) | Computes in parallel the sum of a sequence of values. |
.gif) .gif) | Sum(ParallelQuery<(Of <(Nullable<(Of <(Single>)>)>)>)) | Computes in parallel the sum of a sequence of values. |
.gif) .gif) | Sum(ParallelQuery<(Of <(Single>)>)) | Computes in parallel the sum of a sequence of values. |
.gif) .gif) | Sum<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Decimal>)>)) | Computes in parallel the sum of the sequence of values that are obtained by invoking a transform function on each element of the input sequence. |
.gif) .gif) | Sum<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Double>)>)) | Computes in parallel the sum of the sequence of values that are obtained by invoking a transform function on each element of the input sequence. |
.gif) .gif) | Sum<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Int32>)>)) | Computes in parallel the sum of the sequence of values that are obtained by invoking a transform function on each element of the input sequence. |
.gif) .gif) | Sum<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Int64>)>)) | Computes in parallel the sum of the sequence of values that are obtained by invoking a transform function on each element of the input sequence. |
.gif) .gif) | Sum<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Nullable<(Of <(Decimal>)>)>)>)) | Computes in parallel the sum of the sequence of values that are obtained by invoking a transform function on each element of the input sequence. |
.gif) .gif) | Sum<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Nullable<(Of <(Double>)>)>)>)) | Computes in parallel the sum of the sequence of values that are obtained by invoking a transform function on each element of the input sequence. |
.gif) .gif) | Sum<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Nullable<(Of <(Int32>)>)>)>)) | Computes in parallel the sum of the sequence of values that are obtained by invoking a transform function on each element of the input sequence. |
.gif) .gif) | Sum<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Nullable<(Of <(Int64>)>)>)>)) | Computes in parallel the sum of the sequence of values that are obtained by invoking a transform function on each element of the input sequence. |
.gif) .gif) | Sum<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Nullable<(Of <(Single>)>)>)>)) | Computes in parallel the sum of the sequence of values that are obtained by invoking a transform function on each element of the input sequence. |
.gif) .gif) | Sum<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Single>)>)) | Computes in parallel the sum of the sequence of values that are obtained by invoking a transform function on each element of the input sequence. |
.gif) .gif) | Take<(Of <(TSource>)>) | Returns a specified number of contiguous elements from the start of a parallel sequence. |
.gif) .gif) | TakeWhile<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Boolean>)>)) | Returns elements from a parallel sequence as long as a specified condition is true. |
.gif) .gif) | TakeWhile<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Int32, Boolean>)>)) | Returns elements from a parallel sequence as long as a specified condition is true. The element's index is used in the logic of the predicate function. |
.gif) .gif) | ThenBy<(Of <(TSource, TKey>)>)(OrderedParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, TKey>)>)) | Performs in parallel a subsequent ordering of the elements in a sequence in ascending order according to a key. |
.gif) .gif) | ThenBy<(Of <(TSource, TKey>)>)(OrderedParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, TKey>)>), IComparer<(Of <(TKey>)>)) | Performs in parallel a subsequent ordering of the elements in a sequence in ascending order by using a specified comparer. |
.gif) .gif) | ThenByDescending<(Of <(TSource, TKey>)>)(OrderedParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, TKey>)>)) | Performs in parallel a subsequent ordering of the elements in a sequence in descending order, according to a key. |
.gif) .gif) | ThenByDescending<(Of <(TSource, TKey>)>)(OrderedParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, TKey>)>), IComparer<(Of <(TKey>)>)) | Performs in parallel a subsequent ordering of the elements in a sequence in descending order by using a specified comparer. |
.gif) .gif) | ToArray<(Of <(TSource>)>) | Creates an array from a ParallelQuery<(Of <(TSource>)>). |
.gif) .gif) | ToDictionary<(Of <(TSource, TKey>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, TKey>)>)) | Creates a Dictionary<(Of <(TKey, TValue>)>) from a ParallelQuery<(Of <(TSource>)>) according to a specified key selector function. |
.gif) .gif) | ToDictionary<(Of <(TSource, TKey>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, TKey>)>), IEqualityComparer<(Of <(TKey>)>)) | Creates a Dictionary<(Of <(TKey, TValue>)>) from a ParallelQuery<(Of <(TSource>)>) according to a specified key selector function and key comparer. |
.gif) .gif) | ToDictionary<(Of <(TSource, TKey, TElement>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, TKey>)>), Func<(Of <(TSource, TElement>)>)) | Creates a Dictionary<(Of <(TKey, TValue>)>) from a ParallelQuery<(Of <(TSource>)>) according to specified key selector and element selector functions. |
.gif) .gif) | ToDictionary<(Of <(TSource, TKey, TElement>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, TKey>)>), Func<(Of <(TSource, TElement>)>), IEqualityComparer<(Of <(TKey>)>)) | Creates a Dictionary<(Of <(TKey, TValue>)>) from a ParallelQuery<(Of <(TSource>)>) according to a specified key selector function, a comparer, and an element selector function. |
.gif) .gif) | ToList<(Of <(TSource>)>) | Creates a List<(Of <(T>)>) from an ParallelQuery<(Of <(TSource>)>). |
.gif) .gif) | ToLookup<(Of <(TSource, TKey>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, TKey>)>)) | Creates an ILookup<(Of <(TKey, TElement>)>) from a ParallelQuery<(Of <(TSource>)>) according to a specified key selector function. |
.gif) .gif) | ToLookup<(Of <(TSource, TKey>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, TKey>)>), IEqualityComparer<(Of <(TKey>)>)) | Creates an ILookup<(Of <(TKey, TElement>)>) from a ParallelQuery<(Of <(TSource>)>) according to a specified key selector function and key comparer. |
.gif) .gif) | ToLookup<(Of <(TSource, TKey, TElement>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, TKey>)>), Func<(Of <(TSource, TElement>)>)) | Creates an ILookup<(Of <(TKey, TElement>)>) from a ParallelQuery<(Of <(TSource>)>) according to specified key selector and element selector functions. |
.gif) .gif) | ToLookup<(Of <(TSource, TKey, TElement>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, TKey>)>), Func<(Of <(TSource, TElement>)>), IEqualityComparer<(Of <(TKey>)>)) | Creates an ILookup<(Of <(TKey, TElement>)>) from a ParallelQuery<(Of <(TSource>)>) according to a specified key selector function, a comparer and an element selector function. |
.gif) .gif) | Union<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), IEnumerable<(Of <(TSource>)>)) | Obsolete. This Union overload should never be called. This method is marked as obsolete and always throws NotSupportedException when called. |
.gif) .gif) | Union<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), ParallelQuery<(Of <(TSource>)>)) | Produces the set union of two parallel sequences by using the default equality comparer. |
.gif) .gif) | Union<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), IEnumerable<(Of <(TSource>)>), IEqualityComparer<(Of <(TSource>)>)) | Obsolete. This Union overload should never be called. This method is marked as obsolete and always throws NotSupportedException when called. |
.gif) .gif) | Union<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), ParallelQuery<(Of <(TSource>)>), IEqualityComparer<(Of <(TSource>)>)) | Produces the set union of two parallel sequences by using a specified IEqualityComparer{T}. |
.gif) .gif) | Where<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Boolean>)>)) | Filters in parallel a sequence of values based on a predicate. |
.gif) .gif) | Where<(Of <(TSource>)>)(ParallelQuery<(Of <(TSource>)>), Func<(Of <(TSource, Int32, Boolean>)>)) | Filters in parallel a sequence of values based on a predicate. Each element's index is used in the logic of the predicate function. |
.gif) .gif) | WithCancellation<(Of <(TSource>)>) | Sets the CancellationToken to associate with the query. |
.gif) .gif) | WithDegreeOfParallelism<(Of <(TSource>)>) | Sets the degree of parallelism to use in a query. Degree of parallelism is the maximum number of concurrently executing tasks that will be used to process the query. |
.gif) .gif) | WithExecutionMode<(Of <(TSource>)>) | Sets the execution mode of the query. |
.gif) .gif) | WithMergeOptions<(Of <(TSource>)>) | Sets the merge options for this query, which specify how the query will buffer output. |
.gif) .gif) | Zip<(Of <(TFirst, TSecond, TResult>)>)(ParallelQuery<(Of <(TFirst>)>), IEnumerable<(Of <(TSecond>)>), Func<(Of <(TFirst, TSecond, TResult>)>)) | Obsolete. This Zip overload should never be called. This method is marked as obsolete and always throws NotSupportedException when invoked. |
.gif) .gif) | Zip<(Of <(TFirst, TSecond, TResult>)>)(ParallelQuery<(Of <(TFirst>)>), ParallelQuery<(Of <(TSecond>)>), Func<(Of <(TFirst, TSecond, TResult>)>)) | Merges in parallel two sequences by using the specified predicate function. |