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