Ejemplo n.º 1
0
 public static void ThrowRouteEx(this RouteCollection routes, Exception exception, string[] urls)
 {
     foreach (var url in urls)
     {
         routes.ThrowRouteEx(exception, url, null);
     }
 }
Ejemplo n.º 2
0
 public static void ThrowRouteEx(this RouteCollection routes, Exception exception, string url)
 {
     routes.ThrowRouteEx(exception, url, null);
 }