1 write to _httpResponse
System.Web.Extensions (1)
HttpResponseInternalWrapper.cs (1)
20_httpResponse = httpResponse;
73 references to _httpResponse
System.Web.Extensions (73)
HttpResponseInternalWrapper.cs (73)
25return new HttpCachePolicyWrapper(_httpResponse.Cache); 31return _httpResponse.ContentType; 34_httpResponse.ContentType = value; 40return _httpResponse.Filter; 43_httpResponse.Filter = value; 49return _httpResponse.Output; 54_httpResponse.Clear(); 58_httpResponse.End(); 62_httpResponse.Write(s); 67return _httpResponse.Buffer; 70_httpResponse.Buffer = value; 76return _httpResponse.BufferOutput; 79_httpResponse.BufferOutput = value; 85return _httpResponse.CacheControl; 88_httpResponse.CacheControl = value; 94return _httpResponse.Charset; 97_httpResponse.Charset = value; 103return _httpResponse.ContentEncoding; 106_httpResponse.ContentEncoding = value; 112return _httpResponse.Cookies; 118return _httpResponse.Expires; 121_httpResponse.Expires = value; 127return _httpResponse.ExpiresAbsolute; 130_httpResponse.ExpiresAbsolute = value; 136return _httpResponse.Headers; 142return _httpResponse.HeaderEncoding; 145_httpResponse.HeaderEncoding = value; 151return _httpResponse.IsClientConnected; 157return _httpResponse.IsRequestBeingRedirected; 163return _httpResponse.RedirectLocation; 166_httpResponse.RedirectLocation = value; 172return _httpResponse.Status; 175_httpResponse.Status = value; 181return _httpResponse.StatusCode; 184_httpResponse.StatusCode = value; 190return _httpResponse.StatusDescription; 193_httpResponse.StatusDescription = value; 199return _httpResponse.SubStatusCode; 202_httpResponse.SubStatusCode = value; 208return _httpResponse.SuppressContent; 211_httpResponse.SuppressContent = value; 217return _httpResponse.TrySkipIisCustomErrors; 220_httpResponse.TrySkipIisCustomErrors = value; 225_httpResponse.AddCacheItemDependency(cacheKey); 229_httpResponse.AddCacheItemDependencies(cacheKeys); 233_httpResponse.AddCacheItemDependencies(cacheKeys); 237_httpResponse.AddCacheDependency(dependencies); 241_httpResponse.AddFileDependency(filename); 245_httpResponse.AddFileDependencies(filenames); 249_httpResponse.AddFileDependencies(filenames); 253_httpResponse.AppendCookie(cookie); 257_httpResponse.AppendHeader(name, value); 261_httpResponse.AppendToLog(param); 265return _httpResponse.ApplyAppPathModifier(virtualPath); 269_httpResponse.BinaryWrite(buffer); 273_httpResponse.ClearContent(); 277_httpResponse.ClearHeaders(); 281_httpResponse.DisableKernelCache(); 285_httpResponse.Flush(); 289_httpResponse.Pics(value); 293_httpResponse.Redirect(url); 297_httpResponse.Redirect(url, endResponse); 301_httpResponse.SetCookie(cookie); 305return _httpResponse.SwitchWriter(writer); 309_httpResponse.TransmitFile(filename); 313_httpResponse.TransmitFile(filename, offset, length); 317_httpResponse.Write(buffer, index, count); 321_httpResponse.Write(obj); 325_httpResponse.WriteFile(filename); 329_httpResponse.WriteFile(filename, readIntoMemory); 333_httpResponse.WriteFile(filename, offset, size); 337_httpResponse.WriteFile(fileHandle, offset, size); 341_httpResponse.WriteSubstitution(callback);