3 writes to _caches
System.Web (3)
Compilation\BuildManager.cs (3)
469_caches = new BuildResultCache[] { _memoryCache, _codeGenCache }; 493_caches = new BuildResultCache[] { _memoryCache, preCompCache, _codeGenCache }; 521_caches = new BuildResultCache[] { _memoryCache, preCompilationCache, _codeGenCache };
8 references to _caches
System.Web (8)
Compilation\BuildManager.cs (8)
392Debug.Assert(_caches == null); 2308Debug.Assert(_caches[0] == _memoryCache); 2321for (i = 0; i < _caches.Length; i++) { 2322result = _caches[i].GetBuildResult(cacheKey, virtualPath, hashCode, ensureIsUpToDate); 2362_caches[j].CacheBuildResult(cacheKey, result, DateTime.UtcNow); 2364Debug.Trace("BuildManager", "Found '" + virtualPath + "' in " + _caches[i]); 2423for (int i = 0; i < _caches.Length; i++) { 2424_caches[i].CacheBuildResult(cacheKey, result, hashCode, utcStart);