Мне нужно создать атрибут фильтра настраиваемого действия, который содержит объявление 2 фильтров "RouteAttibute".
Мне нужно:
[Contains2Routes]
public ActionResult Index()
{
return View();
}
Вместо:
[Route("~/index1")]
[Route("~/index2")]
public ActionResult Index()
{
return View();
}