5 references to Read
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventPipeEventDispatcher.cs (2)
125Debug.Assert(Volatile.Read(ref m_sessionID) == 0); 141ulong sessionID = Volatile.Read(ref m_sessionID);
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventPipeEventDispatcher.Threads.cs (1)
46while (Volatile.Read(ref m_sessionID) == sessionID)
src\libraries\System.Private.CoreLib\src\System\Threading\PortableThreadPool.ThreadCounts.cs (1)
103public ThreadCounts VolatileRead() => new ThreadCounts(Volatile.Read(ref _data));
src\libraries\System.Private.CoreLib\src\System\Threading\Thread.cs (1)
612public static ulong VolatileRead(ref ulong address) => Volatile.Read(ref address);