コード例 #1
0
 public static void AddStorefrontRoute(this RouteCollection routes, string name, string url, object defaults, object constraints)
 {
     routes.AddStorefrontRoute(name, url, defaults, constraints, x => new Route(x, new MvcRouteHandler()));
 }
コード例 #2
0
 public static void AddStorefrontRoute(this RouteCollection routes, string name, string url, object defaults)
 {
     routes.AddStorefrontRoute(name, url, defaults, null);
 }