10 references to Routers
Microsoft.AspNetCore.Mvc.Core (1)
Routing\UrlHelper.cs (1)
38var routers = ActionContext.RouteData.Routers;
Microsoft.AspNetCore.Routing (4)
Route.cs (1)
94context.RouteData.Routers.Add(_target);
RouteCollection.cs (1)
75context.RouteData.Routers.Add(route);
RouterMiddleware.cs (1)
44context.RouteData.Routers.Add(_router);
Tree\TreeRouter.cs (1)
212context.RouteData.Routers.Add(entry.Handler);
Microsoft.AspNetCore.Routing.Abstractions (5)
RouteData.cs (5)
40_routers = new List<IRouter>(other.Routers); 116/// <paramref name="router"/> to <see cref="Routers"/>, merging <paramref name="values"/> into 126/// An <see cref="IRouter"/> to append to <see cref="Routers"/>. If <c>null</c>, then <see cref="Routers"/> 163Routers.Add(router);