19 references to SetMediaTypeMappingForFormat
Microsoft.AspNetCore.Mvc.Core (2)
Formatters\FormatterMappings.cs (1)
29SetMediaTypeMappingForFormat(format, MediaTypeHeaderValue.Parse(contentType));
Infrastructure\MvcCoreMvcOptionsSetup.cs (1)
74options.FormatterMappings.SetMediaTypeMappingForFormat("json", MediaTypeHeaderValues.ApplicationJson);
Microsoft.AspNetCore.Mvc.Core.Test (13)
Formatters\FormatFilterTest.cs (5)
117mockObjects.MvcOptions.FormatterMappings.SetMediaTypeMappingForFormat( 200mockObjects.MvcOptions.FormatterMappings.SetMediaTypeMappingForFormat( 221mockObjects.MvcOptions.FormatterMappings.SetMediaTypeMappingForFormat( 247mockObjects.MvcOptions.FormatterMappings.SetMediaTypeMappingForFormat( 468MvcOptions.FormatterMappings.SetMediaTypeMappingForFormat(
Formatters\FormatterMappingsTest.cs (8)
33options.SetMediaTypeMappingForFormat(setFormat, MediaTypeHeaderValue.Parse(contentType)); 53() => options.SetMediaTypeMappingForFormat( 70() => options.SetMediaTypeMappingForFormat( 90() => options.SetMediaTypeMappingForFormat( 112options.SetMediaTypeMappingForFormat("xml", mediaType); 114options.SetMediaTypeMappingForFormat("json", mediaType); 116options.SetMediaTypeMappingForFormat("foo", mediaType); 118options.SetMediaTypeMappingForFormat("bar", mediaType);
Microsoft.AspNetCore.Mvc.Formatters.Xml (2)
DependencyInjection\XmlDataContractSerializerMvcOptionsSetup.cs (1)
52options.FormatterMappings.SetMediaTypeMappingForFormat(
DependencyInjection\XmlSerializerMvcOptionsSetup.cs (1)
40options.FormatterMappings.SetMediaTypeMappingForFormat(
Microsoft.AspNetCore.Mvc.NewtonsoftJson (1)
DependencyInjection\NewtonsoftJsonMvcOptionsSetup.cs (1)
71options.FormatterMappings.SetMediaTypeMappingForFormat("json", MediaTypeHeaderValues.ApplicationJson);
SimpleWebSite (1)
Startup.cs (1)
17.AddFormatterMappings(m => m.SetMediaTypeMappingForFormat("js", new MediaTypeHeaderValue("application/json")))