protected HttpAbstractRouteConfigurator(string route, HttpRouterConfigurator router)
        {
            Router = router;

            Route = route;
            Name  = Guid.NewGuid().ToString();
        }
 public HttpDefaultRouteConfigurator(string action, HttpRouterConfigurator router)
     : base("{*ignorePath}", router)
 {
     this.action = action;
 }