public static Route CreateRouteEx(this WebFormRouteHandler handler, string url, object defaults)
 {
     return(handler.CreateRouteEx(url, defaults, null));
 }
 public static Route CreateRouteEx(this WebFormRouteHandler handler, string url)
 {
     return(handler.CreateRouteEx(url, null, null));
 }