12 references to IsContentTypeSupported
System.ServiceModel (12)
System\ServiceModel\Channels\BinaryMessageEncoder.cs (5)
892base.IsContentTypeSupported(contentType, this.gzipCompressedContentType, this.gzipCompressedContentType)) || 894base.IsContentTypeSupported(contentType, this.deflateCompressedContentType, this.deflateCompressedContentType)) || 895base.IsContentTypeSupported(contentType, this.normalContentType, this.normalContentType); 907if (base.IsContentTypeSupported(contentType, this.gzipCompressedContentType, this.gzipCompressedContentType)) 911else if (base.IsContentTypeSupported(contentType, this.deflateCompressedContentType, this.deflateCompressedContentType))
System\ServiceModel\Channels\MessageEncoder.cs (1)
123return IsContentTypeSupported(contentType, this.ContentType, this.MediaType);
System\ServiceModel\Channels\MtomMessageEncoder.cs (2)
191return IsContentTypeSupported(contentType, this.ContentType, this.MediaType); 199return IsContentTypeSupported(contentType, textContentType, textMediaType);
System\ServiceModel\Channels\TextMessageEncoder.cs (4)
384if (IsContentTypeSupported(contentType, rss1MediaType, rss1MediaType)) 388if (IsContentTypeSupported(contentType, rss2MediaType, rss2MediaType)) 392if (IsContentTypeSupported(contentType, htmlMediaType, atomMediaType)) 396if (IsContentTypeSupported(contentType, atomMediaType, atomMediaType))