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