21 references to Read
mscorlib (19)
system\io\unmanagedmemorystream.cs (16)
313return Interlocked.Read(ref _length); 328return Interlocked.Read(ref _position); 357long pos = Interlocked.Read(ref _position); 408long pos = Interlocked.Read(ref _position); 409long len = Interlocked.Read(ref _length); 481long pos = Interlocked.Read(ref _position); // Use a local to avoid a race condition 482long len = Interlocked.Read(ref _length); 522long pos = Interlocked.Read(ref _position); 529long len = Interlocked.Read(ref _length); 539long finalPos = Interlocked.Read(ref _position); 557long pos = Interlocked.Read(ref _position); 558long len = Interlocked.Read(ref _length); 585long pos = Interlocked.Read(ref _position); // Use a local to avoid a race condition 586long len = Interlocked.Read(ref _length); 678long pos = Interlocked.Read(ref _position); // Use a local to avoid a race condition 679long len = Interlocked.Read(ref _length);
system\threading\Tasks\ParallelLoopState.cs (3)
503else return Interlocked.Read(ref rval); 558else return Interlocked.Read(ref m_lowestBreakIteration); 571else return Interlocked.Read(ref m_lowestBreakIteration);
System.Core (1)
System\Diagnostics\PerformanceData\CounterSetInstanceCounterDataSet.cs (1)
45return Interlocked.Read(ref (* m_offset));
System.Workflow.Runtime (1)
WorkBatch.cs (1)
321return Threading.Interlocked.Read(ref _workItemOrderId);