5 instantiations of SortQueryOperator
System.Core (5)
System\Linq\Parallel\QueryOperators\Unary\SortQueryOperator.cs (1)
79return new SortQueryOperator<TInputOutput, Pair<TSortKey, TKey2>>(Child, pairKeySelector, pairComparer, false);
System\Linq\ParallelEnumerable.cs (4)
1128new SortQueryOperator<TSource, TKey>(source, keySelector, null, false)); 1156new SortQueryOperator<TSource, TKey>(source, keySelector, comparer, false)); 1182return new OrderedParallelQuery<TSource>(new SortQueryOperator<TSource, TKey>(source, keySelector, null, true)); 1210new SortQueryOperator<TSource, TKey>(source, keySelector, comparer, true));
4 references to SortQueryOperator
System.Core (4)
System\Linq\Parallel\QueryOperators\Unary\SortQueryOperator.cs (4)
151private SortQueryOperator<TInputOutput, TSortKey> m_op; // Operator that generated these results 156QueryResults<TInputOutput> childQueryResults, SortQueryOperator<TInputOutput, TSortKey> op, 178SortQueryOperator<TInputOutput, TSortKey> m_op; 181internal ChildResultsRecipient(IPartitionedStreamRecipient<TInputOutput> outputRecipient, SortQueryOperator<TInputOutput, TSortKey> op, QuerySettings settings)