1 type derived from BinaryQueryOperatorResults
System.Linq.Parallel (1)
System\Linq\Parallel\QueryOperators\Binary\ConcatQueryOperator.cs (1)
229private sealed class ConcatQueryOperatorResults : BinaryQueryOperatorResults
6 instantiations of BinaryQueryOperatorResults
System.Linq.Parallel (6)
System\Linq\Parallel\QueryOperators\Binary\ConcatQueryOperator.cs (1)
246return new BinaryQueryOperatorResults(
System\Linq\Parallel\QueryOperators\Binary\ExceptQueryOperator.cs (1)
49return new BinaryQueryOperatorResults(leftChildResults, rightChildResults, this, settings, false);
System\Linq\Parallel\QueryOperators\Binary\GroupJoinQueryOperator.cs (1)
68return new BinaryQueryOperatorResults(leftResults, rightResults, this, settings, false);
System\Linq\Parallel\QueryOperators\Binary\IntersectQueryOperator.cs (1)
51return new BinaryQueryOperatorResults(leftChildResults, rightChildResults, this, settings, false);
System\Linq\Parallel\QueryOperators\Binary\JoinQueryOperator.cs (1)
161return new BinaryQueryOperatorResults(leftResults, rightResults, this, settings, false);
System\Linq\Parallel\QueryOperators\Binary\UnionQueryOperator.cs (1)
53return new BinaryQueryOperatorResults(leftChildResults, rightChildResults, this, settings, false);
2 references to BinaryQueryOperatorResults
System.Linq.Parallel (2)
System\Linq\Parallel\QueryOperators\BinaryQueryOperator.cs (2)
140private readonly BinaryQueryOperatorResults _results; 144internal LeftChildResultsRecipient(IPartitionedStreamRecipient<TOutput> outputRecipient, BinaryQueryOperatorResults results,