Sergey Akopov

Results 2 issues of Sergey Akopov

I'm trying to figure out if there is a better way to load client policies w/o loading all of them on startup. I can load all via `IThrottlePolicyProvider`, but I...

Trying to get routes to work with MVC 4.0. Global.asax calls AttributeRouting to set things up: ``` RouteTable.Routes.MapAttributeRoutes(config => { config.AddRoutesFromAssembly(Assembly.GetExecutingAssembly()); }); ``` Here is my controller action ``` [Route("account/login",...