2 instantiations of CachedRawResponse
System.Web (2)
Cache\OutputCache.cs (1)
278CachedRawResponse cachedRawResponse = new CachedRawResponse(rawResponse, oce.Settings, oce.KernelCacheUrl, oce.CachedVaryId);
OutputCacheModule.cs (1)
1258CachedRawResponse cachedRawResponse = new CachedRawResponse(httpRawResponse, settings, kernelCacheUrl, cachedVaryId);
12 references to CachedRawResponse
System.Web (12)
Cache\OutputCache.cs (6)
180private static OutputCacheEntry Convert(CachedRawResponse cachedRawResponse, string depKey, string[] fileDependencies) { 230private static CachedRawResponse Convert(OutputCacheEntry oce) { 278CachedRawResponse cachedRawResponse = new CachedRawResponse(rawResponse, oce.Settings, oce.KernelCacheUrl, oce.CachedVaryId); 377CachedRawResponse cachedRawResponse = value as CachedRawResponse; 766String rawResponseKey, CachedRawResponse rawResponse,
OutputCacheModule.cs (6)
537CachedRawResponse cachedRawResponse; 673Debug.Assert(item == null || item is CachedRawResponse, "item == null || item is CachedRawResponse"); 674if (item == null || ((CachedRawResponse)item)._cachedVaryId != cachedVary.CachedVaryId) { 696Debug.Assert(item is CachedRawResponse, "item is CachedRawResponse"); 697cachedRawResponse = (CachedRawResponse) item; 1258CachedRawResponse cachedRawResponse = new CachedRawResponse(httpRawResponse, settings, kernelCacheUrl, cachedVaryId);