1 instantiation of Key
Microsoft.AspNetCore.Components.Server (1)
src\Components\Shared\src\ComponentParametersTypeCache.cs (1)
16var key = new Key(assembly, type);
6 references to Key
Microsoft.AspNetCore.Components.Server (6)
src\Components\Shared\src\ComponentParametersTypeCache.cs (6)
12private readonly ConcurrentDictionary<Key, Type?> _typeToKeyLookUp = new(); 16var key = new Key(assembly, type); 28private static Type? ResolveType(Key key, Assembly[] assemblies) 65private struct Key : IEquatable<Key> 74public override bool Equals(object? obj) => obj is Key key && Equals(key); 76public bool Equals(Key other) => string.Equals(Assembly, other.Assembly, StringComparison.Ordinal) &&