I\'ve got the following action on an ApiController:
public string Something() { return \"value\"; }
And I\'ve configured my routes as f
Replace the following code in this path
Path :
App_Start => WebApiConfig.cs
Code:
config.Routes.MapHttpRoute( name: "DefaultApi", routeTemplate: "api/{controller}/{action}/{id}/{Param}", defaults: new { id = RouteParameter.Optional, Param = RouteParameter.Optional } );