1 write to ContentType
System.Web (1)
Abstractions\HttpRequestWrapper.cs (1)
121
_httpRequest.
ContentType
= value;
12 references to ContentType
System.Runtime.Remoting (1)
channels\http\httpremotinghandler.cs (1)
346
InternalRemotingServices.DebugOutChnl("ContentType = " + request.
ContentType
);
System.ServiceModel.Activation (1)
System\ServiceModel\Activation\HostedHttpRequestAsyncResult.cs (1)
960
return this.context.Request.
ContentType
;
System.Web (8)
Abstractions\HttpRequestWrapper.cs (1)
118
return _httpRequest.
ContentType
;
HttpRequest.cs (5)
375
String contentType = this.
ContentType
;
588
AddServerVariableToCollection("CONTENT_TYPE", this.
ContentType
);
809
if (!StringUtil.StringStartsWithIgnoreCase(
ContentType
, "multipart/form-data"))
925
String contentType = this.
ContentType
;
1109
String b = GetAttributeFromHeader(
ContentType
, "boundary");
ImplicitAsyncPreloadModule.cs (2)
61
|| ((isForm = StringUtil.StringStartsWithIgnoreCase(request.
ContentType
, "application/x-www-form-urlencoded"))
63
|| ((isFormMultiPart = StringUtil.StringStartsWithIgnoreCase(request.
ContentType
, "multipart/form-data"))
System.Web.Extensions (2)
Script\Services\RestHandlerFactory.cs (2)
42
(request.
ContentType
.StartsWith("application/json;", StringComparison.OrdinalIgnoreCase) ||
43
string.Equals(request.
ContentType
, "application/json", StringComparison.OrdinalIgnoreCase));