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)
346InternalRemotingServices.DebugOutChnl("ContentType = " + request.ContentType);
System.ServiceModel.Activation (1)
System\ServiceModel\Activation\HostedHttpRequestAsyncResult.cs (1)
960return this.context.Request.ContentType;
System.Web (8)
Abstractions\HttpRequestWrapper.cs (1)
118return _httpRequest.ContentType;
HttpRequest.cs (5)
375String contentType = this.ContentType; 588AddServerVariableToCollection("CONTENT_TYPE", this.ContentType); 809if (!StringUtil.StringStartsWithIgnoreCase(ContentType, "multipart/form-data")) 925String contentType = this.ContentType; 1109String 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) || 43string.Equals(request.ContentType, "application/json", StringComparison.OrdinalIgnoreCase));