4 references to _callbackCompleted
System.Threading.RateLimiting (4)
System\Threading\RateLimiting\TimerAwaitable.cs (4)
78
public bool IsCompleted => ReferenceEquals(_callback,
_callbackCompleted
);
89
Action? continuation = Interlocked.Exchange(ref _callback,
_callbackCompleted
);
95
if (ReferenceEquals(_callback,
_callbackCompleted
) ||
96
ReferenceEquals(Interlocked.CompareExchange(ref _callback, continuation, null),
_callbackCompleted
))