7 writes to _timeoutState
System.Web (7)
HttpContext.cs (7)
1754Volatile.Write(ref _timeoutState, 1); 1762Interlocked.CompareExchange(ref _timeoutState, 0, 1); 1766while (Volatile.Read(ref _timeoutState) == -1) 1771get { return (Volatile.Read(ref _timeoutState) == 1); } 1784if (Volatile.Read(ref _timeoutState) == 1 && ThreadAbortOnTimeout) { // fast check 1799if (Interlocked.CompareExchange(ref _timeoutState, -1, 1) == 1) { 1814if (Volatile.Read(ref _timeoutState) != 1 || !ThreadAbortOnTimeout) {