20 references to Parameters
System (11)
net\System\Net\mail\ContentType.cs (10)
72
return
Parameters
["boundary"];
77
Parameters
.Remove("boundary");
80
Parameters
["boundary"] = value;
89
return
Parameters
["charset"];
94
Parameters
.Remove("charset");
97
Parameters
["charset"] = value;
139
string value =
Parameters
["name"];
147
Parameters
.Remove("name");
150
Parameters
["name"] = value;
211
foreach (string key in
Parameters
.Keys)
net\System\Net\mail\MailMessage.cs (1)
345
wholeView.ContentType.
Parameters
["type"] = view.ContentType.MediaType;
System.ServiceModel (6)
System\ServiceModel\Channels\HttpChannelHelpers.cs (6)
311
if (parsedContentType.MediaType == multipartRelatedMediaType && parsedContentType.
Parameters
.ContainsKey(startInfoHeaderParam))
314
action = new ContentType(parsedContentType.
Parameters
[startInfoHeaderParam]).
Parameters
["action"];
319
action = parsedContentType.
Parameters
["action"];
2665
if (parsedContentType.
Parameters
.ContainsKey("action"))
2667
string value = string.Format(CultureInfo.InvariantCulture, "\"{0}\"", parsedContentType.
Parameters
["action"]);
System.ServiceModel.Web (3)
System\ServiceModel\Web\IncomingWebRequestContext.cs (3)
427
foreach (string key in contentType.
Parameters
.Keys)
431
if (decimal.TryParse(contentType.
Parameters
[key], numberStyles, CultureInfo.InvariantCulture, out result) &&
445
foreach (string param in contentType.
Parameters
.Keys)