2 writes to FormattedComponentKey
Microsoft.AspNetCore.Components.WebAssembly (2)
src\Shared\Components\ComponentMarker.cs (1)
120=> (LocationHash, FormattedComponentKey) = (locationHash, formattedComponentKey);
WebAssemblyJsonSerializerContext.ComponentMarkerKey.g.cs (1)
81Setter = static (obj, value) => global::System.Runtime.CompilerServices.Unsafe.Unbox<global::Microsoft.AspNetCore.Components.ComponentMarkerKey>(obj).FormattedComponentKey = value!,
14 references to FormattedComponentKey
Microsoft.AspNetCore.Components.WebAssembly (14)
src\Components\Shared\src\WebRootComponentManager.cs (3)
188!string.Equals(_key.FormattedComponentKey, newKey.Value.FormattedComponentKey, StringComparison.Ordinal)) 194if (!string.IsNullOrEmpty(_key.FormattedComponentKey))
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}";
WebAssemblyJsonSerializerContext.ComponentMarkerKey.g.cs (2)
80Getter = static obj => ((global::Microsoft.AspNetCore.Components.ComponentMarkerKey)obj).FormattedComponentKey, 107string __value_FormattedComponentKey = ((global::Microsoft.AspNetCore.Components.ComponentMarkerKey)value).FormattedComponentKey;