3 overrides of ContentType
PresentationCore (1)
Core\CSharp\System\IO\Packaging\PackWebResponse.cs (1)
414public override string ContentType
System (2)
net\System\Net\filewebresponse.cs (1)
114public override string ContentType {
net\System\Net\HttpWebResponse.cs (1)
186public override string ContentType {
10 references to ContentType
PresentationCore (5)
Core\CSharp\MS\Internal\FontCache\FontSource.cs (2)
238if (String.Equals(response.ContentType, ObfuscatedContentType, StringComparison.Ordinal)) 315if (String.Equals(response.ContentType, ObfuscatedContentType, StringComparison.Ordinal))
Core\CSharp\MS\Internal\WpfWebRequestHelper.cs (1)
313contentType = new ContentType(response.ContentType);
Core\CSharp\System\Windows\Media\Imaging\BitmapDecoder.cs (1)
1188mimeType = response.ContentType;
Core\CSharp\System\Windows\Media\Imaging\BitmapDownload.cs (1)
331entry.contentType = response.ContentType;
System.Web.Services (5)
System\Web\Services\Discovery\DiscoveryClientProtocol.cs (1)
262contentType = response.ContentType;
System\Web\Services\Protocols\RequestResponse.cs (1)
94Encoding e = GetEncoding(response.ContentType);
System\Web\Services\Protocols\SoapClientProtocol.cs (1)
606message.ContentType = response.ContentType;
System\Web\Services\Protocols\XmlReturnReader.cs (2)
115if (!ContentType.MatchesBase(response.ContentType, ContentType.TextXml)) { 118Encoding e = RequestResponseUtils.GetEncoding(response.ContentType);