7 references to ContentType
System (1)
net\System\Net\HttpListenerRequest.cs (1)
418return GetKnownHeader(HttpRequestHeader.ContentType);
System.Data.Services (1)
System\Data\Services\BatchServiceHost.cs (1)
155get { return this.requestHeaders[HttpRequestHeader.ContentType]; }
System.ServiceModel.Web (5)
System\ServiceModel\Dispatcher\ContentTypeSettingClientMessageFormatter.cs (2)
85if (string.IsNullOrEmpty(httpProperty.Headers[HttpRequestHeader.ContentType])) 87httpProperty.Headers[HttpRequestHeader.ContentType] = contentType;
System\ServiceModel\Web\IncomingWebRequestContext.cs (1)
50get { return this.EnsureMessageProperty().Headers[HttpRequestHeader.ContentType]; }
System\ServiceModel\Web\OutgoingWebRequestContext.cs (2)
37get { return this.MessageProperty.Headers[HttpRequestHeader.ContentType]; } 38set { this.MessageProperty.Headers[HttpRequestHeader.ContentType] = value; }