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)
392
Debug.Assert(
_caches
== null);
2308
Debug.Assert(
_caches
[0] == _memoryCache);
2321
for (i = 0; i <
_caches
.Length; i++) {
2322
result =
_caches
[i].GetBuildResult(cacheKey, virtualPath, hashCode, ensureIsUpToDate);
2362
_caches
[j].CacheBuildResult(cacheKey, result, DateTime.UtcNow);
2364
Debug.Trace("BuildManager", "Found '" + virtualPath + "' in " +
_caches
[i]);
2423
for (int i = 0; i <
_caches
.Length; i++) {
2424
_caches
[i].CacheBuildResult(cacheKey, result, hashCode, utcStart);