5 references to _current
Microsoft.Extensions.Caching.Memory (5)
CacheEntry.cs (5)
47
AsyncLocal<CacheEntry?> holder =
_current
;
54
internal static CacheEntry? Current =>
_current
.Value;
204
Debug.Assert(
_current
.Value == this, "Entries disposed in invalid order");
205
_current
.Value = _previous;
291
if ((_tokens == null || !_tokens.CanPropagateTokens()) && _absoluteExpirationTicks < 0 ||
_current
.Value is not CacheEntry parent)