I want to define two routes. One is simply a get request to the web root, e.g. http://localhost and the second is a get request with one parameter, e.g http://localhost/{sport}. I can get the 1st route working ok, but not the 2nd. I have tried many variations. This is one of them:
using System.Collections.Generic;
using System.Web.Http;
using System.Web.Mvc;
using System.Web.Routing;
namespace PricingBridge.RestService
{
public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapHttpRoute(
name: "aRoute",
routeTemplate: "{myParam}",
defaults: new { controller = "My", myParam = UrlParameter.Optional });
}
}
public class MyController : ApiController
{
public string Get()
{
return "1";
}
public string Get(string myParam)
{
return "2";
}
}
}