Does someting like AcceptRequestType exists in ASP.NET Core Web API?

21 Views Asked by At

I would like to have a single controller action to accept different types as request and I would like to have them automatically generated with Swashbuckle. There is possibility of annotating Web API method with Attribute ProducesResponseType on method of controller like this:

[HttpGet()]
[ProducesResponseType(typeof(typeName))]
public Task<IActionResult> Method()
{
  //...
}

Does exists a similar option for request types? Something like this:

[HttpGet()]
[AcceptRequestType(typeof(concreteTypeName1))]
[AcceptRequestType(typeof(concreteTypeName2))]
public Task<IActionResult> Method(AbstractType model)
{
  //...
}
1

There are 1 best solutions below

0
On

You can use the following attribute:

[Consumes("application/json")]