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