3 overrides of ContentType
PresentationCore (1)
System\IO\Packaging\PackWebResponse.cs (1)
373public override string ContentType
System.Net.Requests (2)
artifacts\obj\System.Net.Requests\Debug\net10.0\System.Net.Requests.notsupported.cs (2)
69public override string ContentType { get { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } } 262public override string ContentType { get { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } }
4 references to ContentType
PresentationCore (4)
MS\Internal\FontCache\FontSource.cs (2)
186if (string.Equals(response.ContentType, ObfuscatedContentType, StringComparison.Ordinal)) 262if (String.Equals(response.ContentType, ObfuscatedContentType, StringComparison.Ordinal))
MS\Internal\WpfWebRequestHelper.cs (1)
249contentType = new ContentType(response.ContentType);
System\Windows\Media\Imaging\BitmapDownload.cs (1)
242entry.contentType = response.ContentType;