//--- Constructors --- public DreamRouteHandler(DreamApplication application, IDreamEnvironment env) { _application = application; _env = env; }
//--- Constructors --- /// <summary> /// Create new handler instance /// </summary> public RoutedHttpHandler(DreamApplication handler, IDreamEnvironment env) { _handler = handler; _env = env; }
//--- Methods --- protected void Application_Start() { log4net.Config.XmlConfigurator.Configure(); _log.Debug("application start"); DreamApplication.CreateInHttpApplication(this); }