21 instantiations of HttpResponseHeader
System.Web (21)
Cache\OutputCache.cs (1)
235HttpResponseHeader h = new HttpResponseHeader(oce.HeaderElements[i].Name, oce.HeaderElements[i].Value);
HttpCachePolicy.cs (9)
881_headerCacheControl = new HttpResponseHeader(HttpWorkerRequest.HeaderCacheControl, sb.ToString()); 889s_headerPragmaNoCache = new HttpResponseHeader(HttpWorkerRequest.HeaderPragma, "no-cache"); 896s_headerExpiresMinus1 = new HttpResponseHeader(HttpWorkerRequest.HeaderExpires, "-1"); 908_headerExpires = new HttpResponseHeader(HttpWorkerRequest.HeaderExpires, expirationDate); 916_headerLastModified = new HttpResponseHeader(HttpWorkerRequest.HeaderLastModified, lastModifiedDate); 925_headerEtag = new HttpResponseHeader(HttpWorkerRequest.HeaderEtag, _etag); 963_headerVaryBy = new HttpResponseHeader(HttpWorkerRequest.HeaderVary, varyByHeaders); 998headerExpires = new HttpResponseHeader(HttpWorkerRequest.HeaderExpires, expirationDate); 1032headerCacheControl = new HttpResponseHeader(HttpWorkerRequest.HeaderCacheControl, sb.ToString());
HttpCookie.cs (1)
493return new HttpResponseHeader(HttpWorkerRequest.HeaderSetCookie, s.ToString());
HttpResponse.cs (10)
249headers.Add(new HttpResponseHeader(headerId, responseHeaders[key])); 252headers.Add(new HttpResponseHeader(key, responseHeaders[key])); 412headers.Add(new HttpResponseHeader("X-AspNet-Version", versionHeader)); 428headers.Add(new HttpResponseHeader(HttpWorkerRequest.HeaderLocation, _redirectLocation)); 456headers.Add(new HttpResponseHeader(HttpWorkerRequest.HeaderCacheControl, "private")); 466headers.Add(new HttpResponseHeader(HttpWorkerRequest.HeaderContentType, contentType)); 631AppendHeader(new HttpResponseHeader(HttpWorkerRequest.HeaderTransferEncoding, "chunked")); 2054_cacheHeaders.Add(new HttpResponseHeader(knownHeaderIndex, value)); 2060h = new HttpResponseHeader(knownHeaderIndex, value); 2062h = new HttpResponseHeader(name, value);
45 references to HttpResponseHeader
System.Web (45)
Cache\OutputCache.cs (3)
188HttpResponseHeader h = (HttpResponseHeader)(headers[i]); 235HttpResponseHeader h = new HttpResponseHeader(oce.HeaderElements[i].Name, oce.HeaderElements[i].Value);
HttpCachePolicy.cs (28)
175internal readonly HttpResponseHeader _headerCacheControl; 176internal readonly HttpResponseHeader _headerPragma; 177internal readonly HttpResponseHeader _headerExpires; 178internal readonly HttpResponseHeader _headerLastModified; 179internal readonly HttpResponseHeader _headerEtag; 180internal readonly HttpResponseHeader _headerVaryBy; 251HttpResponseHeader headerCacheControl, 252HttpResponseHeader headerPragma, 253HttpResponseHeader headerExpires, 254HttpResponseHeader headerLastModified, 255HttpResponseHeader headerEtag, 256HttpResponseHeader headerVaryBy, 351internal HttpResponseHeader HeaderCacheControl {get {return _headerCacheControl ;}} 352internal HttpResponseHeader HeaderPragma {get {return _headerPragma ;}} 353internal HttpResponseHeader HeaderExpires {get {return _headerExpires ;}} 354internal HttpResponseHeader HeaderLastModified {get {return _headerLastModified ;}} 355internal HttpResponseHeader HeaderEtag {get {return _headerEtag ;}} 356internal HttpResponseHeader HeaderVaryBy {get {return _headerVaryBy ;}} 447static HttpResponseHeader s_headerPragmaNoCache; 448static HttpResponseHeader s_headerExpiresMinus1; 492HttpResponseHeader _headerCacheControl; 493HttpResponseHeader _headerPragma; 494HttpResponseHeader _headerExpires; 495HttpResponseHeader _headerLastModified; 496HttpResponseHeader _headerEtag; 497HttpResponseHeader _headerVaryBy; 981HttpResponseHeader headerExpires; 982HttpResponseHeader headerCacheControl;
HttpCookie.cs (1)
444internal HttpResponseHeader GetSetCookieHeader(HttpContext context) {
HttpResponse.cs (10)
211private void AppendHeader(HttpResponseHeader h) { 265HttpResponseHeader cookieHeader = null; 537HttpResponseHeader header = null; 541header = headers[i] as HttpResponseHeader; 1138HttpResponseHeader h = (HttpResponseHeader)(headers[i]); 1640HttpResponseHeader h = (HttpResponseHeader)_customHeaders[i]; 2058HttpResponseHeader h; 3452foreach (HttpResponseHeader header in cacheHeaders) {
OutputCacheModule.cs (1)
879foreach (HttpResponseHeader h in headers) {
UI\TraceContext.cs (2)
802HttpResponseHeader h = (HttpResponseHeader)headers[i];