I\'ve got the following action on an ApiController:
public string Something() { return \"value\"; }
And I\'ve configured my routes as f
If you are decorating your method with HttpGet, add the following using at the top of the controller:
HttpGet
using
using System.Web.Http;
If you are using System.Web.Mvc, then this problem can occur.
System.Web.Mvc