是否有ASP.NET CORE中的routes.IgnoreRoute(...)等效?

时间:2016-11-07 16:36:50

标签: asp.net asp.net-mvc asp.net-core asp.net-core-mvc asp.net-routing

在ASP.NET MVC 4中,我可以使用以下命令忽略某些路由:

public static void RegisterRoutes(RouteCollection routes)
{
    routes.IgnoreRoute("{*old}", new {old=@"previous(/.*)?"});
}

.NET Core没有IgnoreRoute。有没有办法在.NET Core中实现这一目标? 也许是一些自定义中间件?

0 个答案:

没有答案