4 types derived from UnaryQueryOperatorResults
System.Linq.Parallel (4)
System\Linq\Parallel\QueryOperators\Unary\IndexedSelectQueryOperator.cs (1)
190private sealed class IndexedSelectQueryOperatorResults : UnaryQueryOperatorResults
System\Linq\Parallel\QueryOperators\Unary\ReverseQueryOperator.cs (1)
171private sealed class ReverseQueryOperatorResults : UnaryQueryOperatorResults
System\Linq\Parallel\QueryOperators\Unary\SelectQueryOperator.cs (1)
139private sealed class SelectQueryOperatorResults : UnaryQueryOperatorResults
System\Linq\Parallel\QueryOperators\Unary\TakeOrSkipQueryOperator.cs (1)
333private sealed class TakeOrSkipQueryOperatorResults : UnaryQueryOperatorResults
20 instantiations of UnaryQueryOperatorResults
System.Linq.Parallel (20)
System\Linq\Parallel\QueryOperators\AssociativeAggregationOperator.cs (1)
178return new UnaryQueryOperatorResults(childQueryResults, this, settings, preferStriping);
System\Linq\Parallel\QueryOperators\Inlined\InlinedAggregationOperator.cs (1)
116return new UnaryQueryOperatorResults(childQueryResults, this, settings, preferStriping);
System\Linq\Parallel\QueryOperators\Unary\AnyAllSearchOperator.cs (1)
99return new UnaryQueryOperatorResults(childQueryResults, this, settings, preferStriping);
System\Linq\Parallel\QueryOperators\Unary\ContainsSearchOperator.cs (1)
80return new UnaryQueryOperatorResults(childQueryResults, this, settings, preferStriping);
System\Linq\Parallel\QueryOperators\Unary\DefaultIfEmptyQueryOperator.cs (1)
54return new UnaryQueryOperatorResults(childQueryResults, this, settings, preferStriping);
System\Linq\Parallel\QueryOperators\Unary\DistinctQueryOperator.cs (1)
50return new UnaryQueryOperatorResults(childResults, this, settings, false);
System\Linq\Parallel\QueryOperators\Unary\ElementAtQueryOperator.cs (1)
62return new UnaryQueryOperatorResults(childQueryResults, this, settings, preferStriping);
System\Linq\Parallel\QueryOperators\Unary\FirstQueryOperator.cs (1)
53return new UnaryQueryOperatorResults(childQueryResults, this, settings, preferStriping);
System\Linq\Parallel\QueryOperators\Unary\ForAllOperator.cs (1)
80return new UnaryQueryOperatorResults(childQueryResults, this, settings, preferStriping);
System\Linq\Parallel\QueryOperators\Unary\GroupByQueryOperator.cs (1)
180return new UnaryQueryOperatorResults(childResults, this, settings, false);
System\Linq\Parallel\QueryOperators\Unary\IndexedSelectQueryOperator.cs (1)
206return new UnaryQueryOperatorResults(
System\Linq\Parallel\QueryOperators\Unary\IndexedWhereQueryOperator.cs (1)
80return new UnaryQueryOperatorResults(childQueryResults, this, settings, preferStriping);
System\Linq\Parallel\QueryOperators\Unary\LastQueryOperator.cs (1)
53return new UnaryQueryOperatorResults(childQueryResults, this, settings, preferStriping);
System\Linq\Parallel\QueryOperators\Unary\ReverseQueryOperator.cs (1)
186return new UnaryQueryOperatorResults(
System\Linq\Parallel\QueryOperators\Unary\SelectManyQueryOperator.cs (1)
189return new UnaryQueryOperatorResults(childQueryResults, this, settings, preferStriping);
System\Linq\Parallel\QueryOperators\Unary\SelectQueryOperator.cs (1)
154return new UnaryQueryOperatorResults(childQueryResults, op, settings, preferStriping);
System\Linq\Parallel\QueryOperators\Unary\SingleQueryOperator.cs (1)
52return new UnaryQueryOperatorResults(childQueryResults, this, settings, preferStriping);
System\Linq\Parallel\QueryOperators\Unary\TakeOrSkipQueryOperator.cs (1)
349return new UnaryQueryOperatorResults(
System\Linq\Parallel\QueryOperators\Unary\TakeOrSkipWhileQueryOperator.cs (1)
160return new UnaryQueryOperatorResults(childQueryResults, this, settings, preferStriping);
System\Linq\Parallel\QueryOperators\Unary\WhereQueryOperator.cs (1)
75return new UnaryQueryOperatorResults(childQueryResults, this, settings, preferStriping);