mccalltd / AttributeRouting

Define your routes using attributes on actions in ASP.NET MVC and Web API.
http://mccalltd.github.io/AttributeRouting/
MIT License
416 stars 89 forks source link

AttributeRouting - area with optional route parameter #263

Open ajamkin opened 11 years ago

ajamkin commented 11 years ago

Hi. is it possible to have area with two routes? for example:

[RouteArea("{culture}/testarea")] // with specific culture [RouteArea("testarea")] // with default culture LocalizableAreaBaseController : Controller { .... }

Thank You!