1 type derived from WebContentTypeMapper
System.ServiceModel.Web (1)
System\ServiceModel\Channels\RawContentTypeMapper.cs (1)
11class RawContentTypeMapper : WebContentTypeMapper
19 references to WebContentTypeMapper
System.ServiceModel.Web (19)
System\ServiceModel\Channels\WebMessageEncoderFactory.cs (3)
20public WebMessageEncoderFactory(Encoding writeEncoding, int maxReadPoolSize, int maxWritePoolSize, XmlDictionaryReaderQuotas quotas, WebContentTypeMapper contentTypeMapper, bool javascriptCallbackEnabled) 48WebContentTypeMapper contentTypeMapper; 66public WebMessageEncoder(Encoding writeEncoding, int maxReadPoolSize, int maxWritePoolSize, XmlDictionaryReaderQuotas quotas, WebContentTypeMapper contentTypeMapper, bool javascriptCallbackEnabled)
System\ServiceModel\Channels\WebMessageEncodingBindingElement.cs (2)
15WebContentTypeMapper contentTypeMapper; 53public WebContentTypeMapper ContentTypeMapper
System\ServiceModel\Configuration\WebHttpBindingElement.cs (4)
17static readonly Type WebContentTypeMapperType = typeof(WebContentTypeMapper); 263internal static WebContentTypeMapper GetContentTypeMapper(string contentTypeMapperType) 265WebContentTypeMapper contentTypeMapper = null; 274contentTypeMapper = (WebContentTypeMapper)Activator.CreateInstance(type);
System\ServiceModel\Configuration\WebMessageEncodingElement.cs (4)
88if (!typeof(WebContentTypeMapper).IsAssignableFrom(CTMType)) 95typeof(WebContentTypeMapper)))); 99binding.ContentTypeMapper = (WebContentTypeMapper) Activator.CreateInstance(CTMType); 108typeof(WebContentTypeMapper)),
System\ServiceModel\Description\WebServiceEndpoint.cs (1)
67public WebContentTypeMapper ContentTypeMapper
System\ServiceModel\Dispatcher\JsonFormatMapping.cs (1)
21public JsonFormatMapping(Encoding writeEncoding, WebContentTypeMapper contentTypeMapper)
System\ServiceModel\Dispatcher\MultiplexingFormatMapping.cs (2)
15protected WebContentTypeMapper contentTypeMapper; 36public MultiplexingFormatMapping(Encoding writeEncoding, WebContentTypeMapper contentTypeMapper)
System\ServiceModel\Dispatcher\XmlFormatMapping.cs (1)
20public XmlFormatMapping(Encoding writeEncoding, WebContentTypeMapper contentTypeMapper)
System\ServiceModel\WebHttpBinding.cs (1)
180public WebContentTypeMapper ContentTypeMapper