2 types derived from HttpValueCollection
System.Web (2)
HttpHeaderCollection.cs (1)
23
internal class HttpHeaderCollection :
HttpValueCollection
{
HttpServerVarsCollection.cs (1)
24
internal class HttpServerVarsCollection :
HttpValueCollection
{
11 instantiations of HttpValueCollection
System.Web (11)
HttpCookie.cs (1)
317
_multiValue = new
HttpValueCollection
();
HttpDebugHandler.cs (1)
209
HttpValueCollection valCol = new
HttpValueCollection
(s, true, true, Encoding.UTF8);
HttpRequest.cs (5)
189
_queryString = new
HttpValueCollection
(_queryStringText, true, true, Encoding.Default);
202
_queryString = new
HttpValueCollection
(_queryStringText, true, true, Encoding.Default);
2026
_params = new
HttpValueCollection
(64);
2145
_queryString = new
HttpValueCollection
();
2190
_form = new
HttpValueCollection
();
httpserverutility.cs (2)
462
savedForm = request.SwitchForm(new
HttpValueCollection
());
1293
return new
HttpValueCollection
(query, false, true, encoding);
UnvalidatedRequestValues.cs (2)
29
_form = new
HttpValueCollection
(originalForm); // copy ctor disables validation
46
_queryString = new
HttpValueCollection
(originalQueryString); // copy ctor disables validation
21 references to HttpValueCollection
System.Web (21)
HttpCookie.cs (1)
40
private
HttpValueCollection
_multiValue;
HttpDebugHandler.cs (1)
209
HttpValueCollection
valCol = new HttpValueCollection(s, true, true, Encoding.UTF8);
HttpHeaderCollection.cs (1)
68
info.SetType(typeof(
HttpValueCollection
));
HttpRequest.cs (10)
108
private
HttpValueCollection
_params;
109
private
HttpValueCollection
_queryString;
110
private
HttpValueCollection
_form;
2143
internal
HttpValueCollection
EnsureQueryString() {
2188
internal
HttpValueCollection
EnsureForm() {
2218
internal
HttpValueCollection
SwitchForm(
HttpValueCollection
form) {
2219
HttpValueCollection
oldForm = _form;
2742
private void ValidateHttpValueCollection(
HttpValueCollection
collection, RequestValidationSource requestCollection) {
2755
if (!
HttpValueCollection
.KeyIsCandidateForValidation(key)) {
httpserverutility.cs (1)
435
HttpValueCollection
savedForm = null;
HttpValueCollection.cs (1)
39
internal HttpValueCollection(
HttpValueCollection
col)
UI\Page.cs (2)
717
HttpValueCollection
httpValueCollection = (
HttpValueCollection
)((SkipFormActionValidation) ? Request.Unvalidated.QueryString : Request.QueryString);
UnvalidatedRequestValues.cs (4)
24
private
HttpValueCollection
_form;
28
HttpValueCollection
originalForm = _request.EnsureForm();
41
private
HttpValueCollection
_queryString;
45
HttpValueCollection
originalQueryString = _request.EnsureQueryString();