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