3 instantiations of HttpHeaderCollection
System.Web (3)
HttpRequest.cs (1)
2246
_headers = new
HttpHeaderCollection
(_wr, this, 8);
HttpResponse.cs (1)
927
_headers = new
HttpHeaderCollection
(_wr, this, 16);
UnvalidatedRequestValues.cs (1)
63
_headers = new
HttpHeaderCollection
(originalHeaders); // copy ctor disables validation
22 references to HttpHeaderCollection
System.Web (22)
HttpHeaderCollection.cs (1)
55
internal HttpHeaderCollection(
HttpHeaderCollection
col)
HttpRequest.cs (4)
111
private
HttpHeaderCollection
_headers;
2244
internal
HttpHeaderCollection
EnsureHeaders() {
3138
HttpHeaderCollection
headers = Headers as
HttpHeaderCollection
;
HttpResponse.cs (13)
48
private
HttpHeaderCollection
_headers; // response header collection (IIS7+)
227
HttpHeaderCollection
responseHeaders = Headers as
HttpHeaderCollection
;
264
HttpHeaderCollection
headers = Headers as
HttpHeaderCollection
;
1435
HttpHeaderCollection
headers = Headers as
HttpHeaderCollection
;
3415
HttpHeaderCollection
headers = Headers as
HttpHeaderCollection
;
3429
HttpHeaderCollection
headers = Headers as
HttpHeaderCollection
;
3451
HttpHeaderCollection
headers = Headers as
HttpHeaderCollection
;
HttpServerVarsCollection.cs (2)
250
HttpHeaderCollection
headers = _request.Headers as
HttpHeaderCollection
;
UnvalidatedRequestValues.cs (2)
58
private
HttpHeaderCollection
_headers;
62
HttpHeaderCollection
originalHeaders = _request.EnsureHeaders();