1 write to _cacheInfos
System.Web (1)
Hosting\ObjectCacheHost.cs (1)
110
_cacheInfos
= new Dictionary<MemoryCache, MemoryCacheInfo>();
10 references to _cacheInfos
System.Web (10)
Hosting\ObjectCacheHost.cs (10)
95
if (
_cacheInfos
!= null) {
97
if (
_cacheInfos
.TryGetValue(memoryCache, out info)) {
98
_cacheInfos
.Remove(memoryCache);
109
if (
_cacheInfos
== null) {
113
if (!
_cacheInfos
.TryGetValue(memoryCache, out info)) {
116
_cacheInfos
[memoryCache] = info;
126
if (
_cacheInfos
!= null &&
_cacheInfos
.Count > 0) {
127
caches = new MemoryCache[
_cacheInfos
.Keys.Count];
128
_cacheInfos
.Keys.CopyTo(caches, 0);