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