1 instantiation of MemoryCacheStore
System.Runtime.Caching (1)
System\Runtime\Caching\MemoryCache.cs (1)
214
_storeRefs[i] = new GCHandleRef<MemoryCacheStore>(new
MemoryCacheStore
(this, _perfCounters));
24 references to MemoryCacheStore
System.Runtime.Caching (24)
System\Runtime\Caching\CacheExpires.cs (4)
697
MemoryCacheStore
cacheStore = _cacheExpires.MemoryCacheStore;
767
private readonly
MemoryCacheStore
_cacheStore;
773
internal CacheExpires(
MemoryCacheStore
cacheStore)
887
internal
MemoryCacheStore
MemoryCacheStore
System\Runtime\Caching\CacheUsage.cs (4)
763
MemoryCacheStore
cacheStore = _cacheUsage.MemoryCacheStore;
826
private readonly
MemoryCacheStore
_cacheStore;
830
internal CacheUsage(
MemoryCacheStore
cacheStore)
840
internal
MemoryCacheStore
MemoryCacheStore
System\Runtime\Caching\MemoryCache.cs (11)
32
private GCHandleRef<
MemoryCacheStore
>[] _storeRefs;
172
internal
MemoryCacheStore
GetStore(MemoryCacheKey cacheKey)
187
var allStores = new
MemoryCacheStore
[_storeCount];
214
_storeRefs[i] = new GCHandleRef<
MemoryCacheStore
>(new MemoryCacheStore(this, _perfCounters));
366
_storeRefs = new GCHandleRef<
MemoryCacheStore
>[_storeCount];
415
MemoryCacheStore
store = GetStore(cacheKey);
492
MemoryCacheStore
store = GetStore(cacheKey);
527
MemoryCacheStore
store = GetStore(cacheKey);
680
MemoryCacheStore
store = GetStore(cacheKey);
722
MemoryCacheStore
store = GetStore(cacheKey);
741
MemoryCacheStore
sentinelStore = GetStore(sentinelCacheKey);
System\Runtime\Caching\MemoryCacheEntry.cs (5)
37
internal Tuple<
MemoryCacheStore
, MemoryCacheEntry> _updateSentinel; // the MemoryCacheEntry (and its associated store) of the OnUpdateSentinel for this entry, if there is one
210
internal void ConfigureUpdateSentinel(
MemoryCacheStore
sentinelStore, MemoryCacheEntry sentinelEntry)
309
Tuple<
MemoryCacheStore
, MemoryCacheEntry> sentinelInfo = fields._updateSentinel;
314
MemoryCacheStore
sentinelStore = sentinelInfo.Item1;
339
MemoryCacheStore
store = e._fields._cache.GetStore(e);