2 writes to m_currentRightSource
System.Core (2)
System\Linq\Parallel\QueryOperators\Unary\SelectManyQueryOperator.cs (2)
303
m_currentRightSource
= rightChild.GetEnumerator();
347
m_currentRightSource
= null;
9 references to m_currentRightSource
System.Core (9)
System\Linq\Parallel\QueryOperators\Unary\SelectManyQueryOperator.cs (9)
281
if (
m_currentRightSource
== null)
305
Contract.Assert(
m_currentRightSource
!= null);
315
m_currentRightSourceAsOutput = (IEnumerator<TOutput>)(object)
m_currentRightSource
;
316
Contract.Assert(m_currentRightSourceAsOutput ==
m_currentRightSource
,
321
if (
m_currentRightSource
.MoveNext())
329
currentElement = m_selectManyOperator.m_resultSelector(m_mutables.m_currentLeftElement,
m_currentRightSource
.Current);
346
m_currentRightSource
.Dispose();
356
if (
m_currentRightSource
!= null)
358
m_currentRightSource
.Dispose();