Beispiel #1
0
            public ExpressAppHandlerConfig(ExpressApp app, IRouterMatcher <This <IRouter> > config)
            {
                if (config == null)
                {
                    throw new ArgumentNullException(nameof(config));
                }

                _app    = app;
                _config = config;
            }
Beispiel #2
0
 private static extern void Call(Express app, IRouterMatcher <This <IRouter> > config, string path, RequestHandler handler);