2 writes to Key
Microsoft.AspNetCore.Components.WebAssembly (2)
src\Shared\Components\ComponentMarker.cs (1)
71Key = key,
WebAssemblyJsonSerializerContext.ComponentMarker.g.cs (1)
99Setter = static (obj, value) => global::System.Runtime.CompilerServices.Unsafe.Unbox<global::Microsoft.AspNetCore.Components.ComponentMarker>(obj).Key = value!,
9 references to Key
Microsoft.AspNetCore.Components.WebAssembly (9)
Hosting\WebAssemblyHost.cs (1)
222operation.Marker?.Key,
Rendering\WebAssemblyRenderer.cs (2)
75operation.Marker!.Value.Key!, 82operation.Marker?.Key,
src\Shared\Components\ComponentMarker.cs (4)
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}";
WebAssemblyJsonSerializerContext.ComponentMarker.g.cs (2)
98Getter = static obj => ((global::Microsoft.AspNetCore.Components.ComponentMarker)obj).Key, 250global::Microsoft.AspNetCore.Components.ComponentMarkerKey? __value_Key = ((global::Microsoft.AspNetCore.Components.ComponentMarker)value).Key;