1 write to m_rightChildSelector
System.Core (1)
System\Linq\Parallel\QueryOperators\Unary\SelectManyQueryOperator.cs (1)
70
m_rightChildSelector
= rightChildSelector;
4 references to m_rightChildSelector
System.Core (4)
System\Linq\Parallel\QueryOperators\Unary\SelectManyQueryOperator.cs (4)
202
if (
m_rightChildSelector
!= null)
206
return CancellableEnumerable.Wrap(Child.AsSequentialQuery(token), token).SelectMany(
m_rightChildSelector
, m_resultSelector);
208
return (IEnumerable<TOutput>)(object)(CancellableEnumerable.Wrap(Child.AsSequentialQuery(token), token).SelectMany(
m_rightChildSelector
));
430
IEnumerable<TRightInput> rightChild = m_selectManyOperator.
m_rightChildSelector
(m_mutables.m_currentLeftElement);