2 writes to m_currentRightSource
System.Core (2)
System\Linq\Parallel\QueryOperators\Unary\SelectManyQueryOperator.cs (2)
433
m_currentRightSource
= rightChild.GetEnumerator();
477
m_currentRightSource
= null;
9 references to m_currentRightSource
System.Core (9)
System\Linq\Parallel\QueryOperators\Unary\SelectManyQueryOperator.cs (9)
411
if (
m_currentRightSource
== null)
435
Contract.Assert(
m_currentRightSource
!= null);
445
m_currentRightSourceAsOutput = (IEnumerator<TOutput>)(object)
m_currentRightSource
;
446
Contract.Assert(m_currentRightSourceAsOutput ==
m_currentRightSource
,
451
if (
m_currentRightSource
.MoveNext())
459
currentElement = m_selectManyOperator.m_resultSelector(m_mutables.m_currentLeftElement,
m_currentRightSource
.Current);
476
m_currentRightSource
.Dispose();
486
if (
m_currentRightSource
!= null)
488
m_currentRightSource
.Dispose();