示例#1
0
        public Router(string routeConfigurationPath)
        {
            dynamic router = JsonLoader.LoadFromFile <dynamic>(routeConfigurationPath);

            Routes = JsonLoader.Deserializer <List <Route> >(Convert.ToString(router.routes));
            AuthenticationService = JsonLoader.Deserializer <Destination>(Convert.ToString(router.authenticationService));
        }