1 instantiation of RouteKey
Microsoft.AspNetCore.Components (1)
Routing\Router.cs (1)
165var routeKey = new RouteKey(AppAssembly, AdditionalAssemblies);
8 references to RouteKey
Microsoft.AspNetCore.Components (8)
Routing\RouteKey.cs (3)
8internal readonly struct RouteKey : IEquatable<RouteKey> 21return obj is RouteKey other && Equals(other); 24public bool Equals(RouteKey other)
Routing\Router.cs (2)
38private RouteKey _routeTableLastBuiltForRouteKey; 165var routeKey = new RouteKey(AppAssembly, AdditionalAssemblies);
Routing\RouteTableFactory.cs (3)
32private readonly ConcurrentDictionary<RouteKey, RouteTable> _cache = new(); 34public RouteTable Create(RouteKey routeKey, IServiceProvider serviceProvider) 50private static List<Type> GetRouteableComponents(RouteKey routeKey)