4 writes to _continuation
Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (4)
Internal\SocketAwaitableEventArgs.cs (4)
37
if (c != null || (c = Interlocked.CompareExchange(ref
_continuation
, _continuationCompleted, null)) != null)
41
_continuation
= _continuationCompleted; // in case someone's polling IsCompleted
49
_continuation
= null;
74
var prevContinuation = Interlocked.CompareExchange(ref
_continuation
, continuation, null);
2 references to _continuation
Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (2)
Internal\SocketAwaitableEventArgs.cs (2)
35
var c =
_continuation
;
66
return !ReferenceEquals(
_continuation
, _continuationCompleted) ? ValueTaskSourceStatus.Pending :