1 write to _rightChildSelector
System.Linq.Parallel (1)
System\Linq\Parallel\QueryOperators\Unary\SelectManyQueryOperator.cs (1)
66_rightChildSelector = rightChildSelector;
5 references to _rightChildSelector
System.Linq.Parallel (5)
System\Linq\Parallel\QueryOperators\Unary\SelectManyQueryOperator.cs (5)
198if (_rightChildSelector != null) 202return CancellableEnumerable.Wrap(Child.AsSequentialQuery(token), token).SelectMany(_rightChildSelector, _resultSelector); 204return (IEnumerable<TOutput>)CancellableEnumerable.Wrap(Child.AsSequentialQuery(token), token).SelectMany(_rightChildSelector); 424Debug.Assert(_selectManyOperator._rightChildSelector != null); 426IEnumerable<TRightInput> rightChild = _selectManyOperator._rightChildSelector(_mutables._currentLeftElement);