2 writes to FormattedComponentKey
Microsoft.AspNetCore.Components.Server (1)
Microsoft.AspNetCore.Components.Server.Tests (1)
14 references to FormattedComponentKey
Microsoft.AspNetCore.Components.Server (12)
src\Shared\Components\ComponentMarker.cs (9)
100return $"Server Component: {TypeName}, Sequence: {Sequence}, Key: {Key?.FormattedComponentKey} Descriptor: {Descriptor?.Substring(5)}...";
102return $"WebAssembly Component: {TypeName}, Assembly: {Assembly}, Key: {Key?.FormattedComponentKey}";
104return $"Auto Component: {TypeName}, Assembly: {Assembly}, Key: {Key?.FormattedComponentKey}, Descriptor: {Descriptor?.Substring(5)}...";
106return $"Unknown Component Type: {Type}, Key: {Key?.FormattedComponentKey}";
143&& string.Equals(FormattedComponentKey, other.FormattedComponentKey, StringComparison.Ordinal);
149=> HashCode.Combine(LocationHash, FormattedComponentKey);
151private readonly string GetDebuggerDisplay() => $"LocationHash: {LocationHash}, Key: {FormattedComponentKey ?? "null"}";
157: $"{LocationHash}:{FormattedComponentKey}";
Microsoft.AspNetCore.Components.Server.Tests (2)