7 overrides of IsContentTypeSupported
System.ServiceModel (3)
System\ServiceModel\Channels\BinaryMessageEncoder.cs (1)
884public override bool IsContentTypeSupported(string contentType)
System\ServiceModel\Channels\MtomMessageEncoder.cs (1)
202public override bool IsContentTypeSupported(string contentType)
System\ServiceModel\Channels\TextMessageEncoder.cs (1)
364public override bool IsContentTypeSupported(string contentType)
System.ServiceModel.Channels (1)
System\ServiceModel\Channels\ByteStreamMessageEncoder.cs (1)
61public override bool IsContentTypeSupported(string contentType)
System.ServiceModel.Web (3)
System\ServiceModel\Channels\JsonMessageEncoderFactory.cs (1)
153public override bool IsContentTypeSupported(string contentType)
System\ServiceModel\Channels\WebMessageEncoderFactory.cs (1)
164public override bool IsContentTypeSupported(string contentType)
System\ServiceModel\Channels\WebScriptMetadataMessageEncoderFactory.cs (1)
65public override bool IsContentTypeSupported(string contentType)
18 references to IsContentTypeSupported
System.ServiceModel (11)
System\ServiceModel\Channels\BinaryMessageEncoder.cs (1)
887if (!base.IsContentTypeSupported(contentType))
System\ServiceModel\Channels\DefaultWebSocketConnectionHandler.cs (1)
213return this.encoder.IsContentTypeSupported(headerValue);
System\ServiceModel\Channels\HttpChannelHelpers.cs (4)
398if (!messageEncoder.IsContentTypeSupported(ContentType)) 1260if (!messageEncoder.IsContentTypeSupported(contentType)) 1396if (!messageEncoder.IsContentTypeSupported(contentType)) 3858if (!encoder.IsContentTypeSupported(response.ContentType))
System\ServiceModel\Channels\MsmqDecodeHelper.cs (2)
117if (!listener.MessageEncoderFactory.Encoder.IsContentTypeSupported(decoder.ContentType)) 229if (!encoder.IsContentTypeSupported(sessionDecoder.ContentType))
System\ServiceModel\Channels\SessionConnectionReader.cs (1)
517if (!this.MessageEncoder.IsContentTypeSupported(decoder.ContentType))
System\ServiceModel\Channels\SingletonConnectionReader.cs (1)
393if (!this.parent.transportSettings.MessageEncoderFactory.Encoder.IsContentTypeSupported(Decoder.ContentType))
System\ServiceModel\Channels\TextMessageEncoder.cs (1)
371if (base.IsContentTypeSupported(contentType))
System.ServiceModel.Web (7)
System\ServiceModel\Channels\WebMessageEncoderFactory.cs (5)
178return RawMessageEncoder.IsContentTypeSupported(contentType) || JsonMessageEncoder.IsContentTypeSupported(contentType) || TextMessageEncoder.IsContentTypeSupported(contentType); 404else if (JsonMessageEncoder.IsContentTypeSupported(contentType)) 408else if (TextMessageEncoder.IsContentTypeSupported(contentType))
System\ServiceModel\Channels\WebScriptMetadataMessageEncoderFactory.cs (1)
67return innerReadMessageEncoder.IsContentTypeSupported(contentType);
System\ServiceModel\Dispatcher\MultiplexingFormatMapping.cs (1)
73if (this.Encoder.IsContentTypeSupported(contentTypeStr) &&