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