1 instantiation of RouteTable
Microsoft.AspNetCore.Components (1)
Routing\RouteTableFactory.cs (1)
143return new RouteTable(builder.Build());
8 references to RouteTable
Microsoft.AspNetCore.Components (8)
Routing\Router.cs (2)
101private RouteTable Routes { get; set; } 246endpointRouteData = RouteTable.ProcessParameters(endpointRouteData);
Routing\RouteTableFactory.cs (6)
32private readonly ConcurrentDictionary<RouteKey, RouteTable> _cache = new(); 34public RouteTable Create(RouteKey routeKey, IServiceProvider serviceProvider) 36if (_cache.TryGetValue(routeKey, out var resolvedComponents)) 42var routeTable = Create(componentTypes, serviceProvider); 86internal static RouteTable Create(List<Type> componentTypes, IServiceProvider serviceProvider) 116internal static RouteTable Create(Dictionary<Type, string[]> templatesByHandler, IServiceProvider serviceProvider)