Esempio n. 1
0
 public static void MapHttpHandler <THandler>(this RouteCollection routes, string name, string url, RouteValueDictionary defaults, RouteValueDictionary constraints) where THandler : IHttpHandler, new()
 {
     routes.MapHttpHandler <THandler>(name, url, defaults, constraints, null);
 }
Esempio n. 2
0
 public static void MapHttpHandler <THandler>(this RouteCollection routes, string name, string url) where THandler : IHttpHandler, new()
 {
     routes.MapHttpHandler <THandler>(name, url, null, null, null);
 }