3 types derived from XmlDataContractSerializerInputFormatter
Microsoft.AspNetCore.Mvc.Core.Test (2)
ModelBinding\Binders\BodyModelBinderTests.cs (2)
815private class TestableXmlDataContractSerializerInputFormatter : XmlDataContractSerializerInputFormatter 885private class DerivedXmlDataContractSerializerInputFormatter : XmlDataContractSerializerInputFormatter
Microsoft.AspNetCore.Mvc.Formatters.Xml.Test (1)
XmlDataContractSerializerInputFormatterTest.cs (1)
753private class TestXmlDataContractSerializerInputFormatter : XmlDataContractSerializerInputFormatter
26 instantiations of XmlDataContractSerializerInputFormatter
Microsoft.AspNetCore.Mvc.Core.Test (1)
ModelBinding\Binders\BodyModelBinderTests.cs (1)
289{ new XmlDataContractSerializerInputFormatter(new MvcOptions()) },
Microsoft.AspNetCore.Mvc.Formatters.Xml (1)
DependencyInjection\XmlDataContractSerializerMvcOptionsSetup.cs (1)
39var inputFormatter = new XmlDataContractSerializerInputFormatter(options);
Microsoft.AspNetCore.Mvc.Formatters.Xml.Test (24)
XmlDataContractSerializerInputFormatterTest.cs (24)
70var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()); 113var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()); 126var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()); 144var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()); 176var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()); 208var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions { SuppressInputFormatterBuffering = true }); 243var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()); 275var formatter = new XmlDataContractSerializerInputFormatter( 307var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()); 335var formatter = new XmlDataContractSerializerInputFormatter(mvcOptions); 373var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()); 398var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()); 420var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()); 436var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()); 449var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()); 461var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()); 490var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()); 508var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()); 545var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()); 571var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()); 610var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()); 639var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()) 669var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()); 698var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions())
30 references to XmlDataContractSerializerInputFormatter
Microsoft.AspNetCore.Mvc.Formatters.Xml (3)
DependencyInjection\XmlDataContractSerializerMvcOptionsSetup.cs (1)
39var inputFormatter = new XmlDataContractSerializerInputFormatter(options);
XmlDataContractSerializerInputFormatter.cs (2)
27/// Initializes a new instance of <see cref="XmlDataContractSerializerInputFormatter"/>. 90if (GetType() == typeof(XmlDataContractSerializerInputFormatter))
Microsoft.AspNetCore.Mvc.Formatters.Xml.Test (25)
DependencyInjection\XmlDataContractSerializerMvcOptionsSetupTest.cs (1)
54Assert.IsType<XmlDataContractSerializerInputFormatter>(Assert.Single(options.InputFormatters));
XmlDataContractSerializerInputFormatterTest.cs (24)
70var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()); 113var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()); 126var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()); 144var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()); 176var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()); 208var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions { SuppressInputFormatterBuffering = true }); 243var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()); 275var formatter = new XmlDataContractSerializerInputFormatter( 307var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()); 335var formatter = new XmlDataContractSerializerInputFormatter(mvcOptions); 373var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()); 398var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()); 420var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()); 436var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()); 449var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()); 461var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()); 490var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()); 508var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()); 545var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()); 571var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()); 610var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()); 639var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()) 669var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions()); 698var formatter = new XmlDataContractSerializerInputFormatter(new MvcOptions())
XmlFormattersWebSite (2)
Startup.cs (2)
30XmlDataContractSerializerInputFormatter dcsInputFormatter = null; 41case XmlDataContractSerializerInputFormatter formatter: