aspnetcore/test/WebSites/RoutingWebSite/Controllers
Ryan Nowak ed8ba5ae9c Fix for #1194 - Error using [HttpPost] and [Route] together
This change enables some compatibility scenarios with MVC 5 by expanding
the set of legal ways to configure attribute routing. Most promiently, the
following example is now legal:

[HttpPost]
[Route("Products")]
public void MyAction() { }

This will define a single action that accepts POST on route "Products".

See the comments in #1194 for a more detailed description of what changed
with more examples.
2014-11-19 15:52:20 -08:00
..
Products Implement RouteKeyHandling.CatchAll 2014-08-14 15:59:09 -07:00
BanksController.cs Fix for #1194 - Error using [HttpPost] and [Route] together 2014-11-19 15:52:20 -08:00
BlogController.cs
CompanyController.cs [Fixes #734] Attribute Routing: Implement Name 2014-08-29 17:51:12 -07:00
DuplicateController.cs [Fixes #734] Attribute Routing: Implement Name 2014-08-29 17:51:12 -07:00
EmployeeController.cs [Fixes #739] Attribute Routing: Multiple routes per-action 2014-09-12 14:43:19 -07:00
HomeController.cs
MapsController.cs [Fixes #739] Attribute Routing: Multiple routes per-action 2014-09-12 14:43:19 -07:00
StoreController.cs [Fixes #900] Use [Route(...)] on action methods to specify an attribute route that allows all verbs. 2014-09-10 10:11:42 -07:00
TeamController.cs