3 writes to ContentTypeMapper
System.ServiceModel.Web (3)
System\ServiceModel\Configuration\WebMessageEncodingElement.cs (1)
99binding.ContentTypeMapper = (WebContentTypeMapper) Activator.CreateInstance(CTMType);
System\ServiceModel\Web\WebServiceHost.cs (1)
197encodingElement.ContentTypeMapper = RawContentTypeMapper.Instance;
System\ServiceModel\WebHttpBinding.cs (1)
185webMessageEncodingBindingElement.ContentTypeMapper = value;
7 references to ContentTypeMapper
System.ServiceModel.Web (7)
System\ServiceModel\Channels\WebMessageEncodingBindingElement.cs (3)
179return new WebMessageEncoderFactory(this.WriteEncoding, this.MaxReadPoolSize, this.MaxWritePoolSize, this.ReaderQuotas, this.ContentTypeMapper, this.CrossDomainScriptAccessEnabled); 291if (this.ContentTypeMapper != other.ContentTypeMapper)
System\ServiceModel\Description\WebHttpBehavior.cs (2)
213XmlFormatMapping xmlFormatMapping = new XmlFormatMapping(webEncodingBindingElement.WriteEncoding, webEncodingBindingElement.ContentTypeMapper); 214JsonFormatMapping jsonFormatMapping = new JsonFormatMapping(webEncodingBindingElement.WriteEncoding, webEncodingBindingElement.ContentTypeMapper);
System\ServiceModel\Web\WebServiceHost.cs (1)
180if (encodingElement == null || encodingElement.ContentTypeMapper != null)
System\ServiceModel\WebHttpBinding.cs (1)
182get { return webMessageEncodingBindingElement.ContentTypeMapper; }