I'm pretty new to .NET Core. I'm trying to set up a little MVC application. Where i implemented a controller with a defined Route.
[Route("api/ota")]
public class OTAController : ControllerBase
{
[HttpPost]
public async Task<ContentResult> EndPoint([FromBody] object otaHotelRatePlanNotifRQ)
{
Console.WriteLine("Something is posted");
...
for this controller i implemented a custom inputformatter and registered it in the Startup.cs works fine so far.
services.AddMvc(options => {
options.InputFormatters.Insert(0, new RawRequestBodyInputFormatter());
}).SetCompatibilityVersion(CompatibilityVersion.Version_2_1)
But now this inputformatter is applied for any controller and specified route. Is there any way to apply the formatter just for a specified controller/route.
Yes this can be in the Startup.cs by adding a new route in the config method, you should have something like this by default you need to add a new one for the controller that you want:
Note: The order matters.