Exemple #1
0
        public RouteInfo(string route, string[] args, bool cache, RouteHandlerInfo routeHandler)
        {
            Route = route;
            Cache = cache;

            HandlerInfo = routeHandler;
            Params = args;
        }
Exemple #2
0
 public RouteInfo(string route, bool cache, RouteHandlerInfo routeHandler)
     : this(route, null, cache, routeHandler)
 {
 }