What is the difference between WebApiConfig.cs
and RouteConfig.cs
in the App_Start
folder of an MVC Web API project in Visual Studio 2012?
If you are familiar with ASP.NET MVC, Web API routing is very similar to MVC routing. The main difference is that Web API uses the HTTP method, not the URI path, to select the action. You can also use MVC-style routing in Web API. This article does not assume any knowledge of ASP.NET MVC.
From Routing in ASP.NET Web API