I have a Web API project and I am unable to enable \"PUT/Patch\" requests against it.
The response I get from fiddler is:
HTTP/1.1 405 Method Not Al
This answer fixed the issue for me. I had to add the Route attribute and the problem was solved.
[HttpPut] [Route("")] public HttpResponseMessage MyMethod()