Answers for "asp.net core httpdelete with body"

0

asp.net core httpdelete with body

public class AddMissingContentType : Attribute, IResourceFilter
{
    public void OnResourceExecuting(ResourceExecutingContext context)
    {
        context.HttpContext.Request.Headers["Content-Type"] = "application/json";
    }

    public void OnResourceExecuted(ResourceExecutedContext context)
    {
    }
}
And add it to your method:

[AddMissingContentType]
[HttpDelete]
public async Task<IActionResult> Delete([FromBody]RequestData request)
{
}
Posted by: Guest on June-15-2021

Code answers related to "asp.net core httpdelete with body"

Browse Popular Code Answers by Language