1 type derived from BinaryQueryOperatorResults
System.Core (1)
System\Linq\Parallel\QueryOperators\Unary\ConcatQueryOperator.cs (1)
234class ConcatQueryOperatorResults : BinaryQueryOperatorResults
6 instantiations of BinaryQueryOperatorResults
System.Core (6)
System\Linq\Parallel\QueryOperators\Binary\ExceptQueryOperator.cs (1)
53return new BinaryQueryOperatorResults(leftChildResults, rightChildResults, this, settings, false);
System\Linq\Parallel\QueryOperators\Binary\GroupJoinQueryOperator.cs (1)
73return new BinaryQueryOperatorResults(leftResults, rightResults, this, settings, false);
System\Linq\Parallel\QueryOperators\Binary\IntersectQueryOperator.cs (1)
55return new BinaryQueryOperatorResults(leftChildResults, rightChildResults, this, settings, false);
System\Linq\Parallel\QueryOperators\Binary\JoinQueryOperator.cs (1)
129return new BinaryQueryOperatorResults(leftResults, rightResults, this, settings, false);
System\Linq\Parallel\QueryOperators\Binary\UnionQueryOperator.cs (1)
57return new BinaryQueryOperatorResults(leftChildResults, rightChildResults, this, settings, false);
System\Linq\Parallel\QueryOperators\Unary\ConcatQueryOperator.cs (1)
252return new BinaryQueryOperatorResults(
2 references to BinaryQueryOperatorResults
System.Core (2)
System\Linq\Parallel\QueryOperators\BinaryQueryOperator.cs (2)
141BinaryQueryOperatorResults m_results; 145internal LeftChildResultsRecipient(IPartitionedStreamRecipient<TOutput> outputRecipient, BinaryQueryOperatorResults results,