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