aspnetcore/test/WebSites/BasicWebSite
Ryan Nowak 2e2784aa3d [Design] Split up MvcRouteHandler
This change splits up the conventional routing path from the attribute
routing path *inside* routing, instead of inside `MvcRouteHandler`. Each
attribute route group now gets its own instance of
`MvcAttributeRouteHandler` which just knows about the actions it can
reach.

This removes the concept of a route-group-token and removes the lookup
table entirely for attribute routing. This also means that the
`DefaultHandler` on `IRouteBuilder` will not be used for attribute routes,
which we are OK with for 1.0.0.

The action selector's functionality is now split into two methods. We
think this is OK for 1.0.0 because any customization of `IActionSelector`
up to now had to implement virtually the same policy as ours in order to
work with attribute routing. It should now be possible to customize the
selector in a meaningful way without interfering with attribute routing.
2016-06-07 08:12:47 -07:00
..
Areas [Design] Split up MvcRouteHandler 2016-06-07 08:12:47 -07:00
Components
Controllers [Fixes #4506] Move and rename ActionDescriptor.Name to ControllerActionDescriptor.ActionName 2016-05-31 23:13:20 -07:00
Conventions
Formatters
Models Add `[Remote(routeName : "name")]` tests 2016-05-03 12:25:00 -07:00
Views [Design] Split up MvcRouteHandler 2016-06-07 08:12:47 -07:00
wwwroot/lib/jquery-validation-unobtrusive Add `[Remote(routeName : "name")]` tests 2016-05-03 12:25:00 -07:00
ActionDescriptorCreationCounter.cs
BasicWebSite.xproj
RequestIdMiddleware.cs
RequestIdService.cs
RequestIdViewComponent.cs
RequestScopedActionConstraint.cs
RequestScopedFilter.cs
RequestScopedTagHelper.cs
Startup.cs
_bower.json Add `[Remote(routeName : "name")]` tests 2016-05-03 12:25:00 -07:00
_bower.readme Add `[Remote(routeName : "name")]` tests 2016-05-03 12:25:00 -07:00
_gruntfile.js Add `[Remote(routeName : "name")]` tests 2016-05-03 12:25:00 -07:00
_package.json Add `[Remote(routeName : "name")]` tests 2016-05-03 12:25:00 -07:00
project.json Add `[Remote(routeName : "name")]` tests 2016-05-03 12:25:00 -07:00
readme.md
web.config

readme.md

BasicWebSite

This web site illustrates many commonly used features including but not limited to link generation, action results and content negotiation, RouteData amongst others.