1 instantiation of MemoryCacheStore
System.Runtime.Caching (1)
System\Runtime\Caching\MemoryCache.cs (1)
215_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; 173internal MemoryCacheStore GetStore(MemoryCacheKey cacheKey) 188var allStores = new MemoryCacheStore[_storeCount]; 215_storeRefs[i] = new GCHandleRef<MemoryCacheStore>(new MemoryCacheStore(this, _perfCounters)); 389_storeRefs = new GCHandleRef<MemoryCacheStore>[_storeCount]; 438MemoryCacheStore store = GetStore(cacheKey); 530MemoryCacheStore store = GetStore(cacheKey); 565MemoryCacheStore store = GetStore(cacheKey); 718MemoryCacheStore store = GetStore(cacheKey); 760MemoryCacheStore store = GetStore(cacheKey); 779MemoryCacheStore 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);