I have a C# .Net 4.5 Web Api application to which I have added a Help Page such as the one shown here.
When a developer launches the Web Api application in Visual Studio, I would like the help page to come up.
I would like to accomplish this by the using routing (such as a change to WebApiConfig.cs or Global.asax.cs) as opposed to a setting in the project's properties.
In the WebApiConfig.cs file I tried adding the following -
config.Routes.MapHttpRoute("Default", "api/help");
That did not work. Does anyone know how to make this work? Thanks.