1 write to m_source
mscorlib (1)
system\Collections\Concurrent\ConcurrentQueue.cs (1)
697m_source = source;
7 references to m_source
mscorlib (7)
system\Collections\Concurrent\ConcurrentQueue.cs (7)
744Segment newSegment = new Segment(m_index + 1, m_source); //m_index is Int64, we don't need to worry about overflow 757Segment newSegment = new Segment(m_index + 1, m_source); //m_index is Int64, we don't need to worry about overflow 759Contract.Assert(m_source.m_tail == this); 760m_source.m_tail = m_next; 845if (m_source.m_numSnapshotTakers <= 0) 866Contract.Assert(m_source.m_head == this); 867m_source.m_head = m_next;