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