2 writes to Key
Microsoft.AspNetCore.Components.Endpoints (2)
_generated\37\ServerComponentJsonContext.ComponentMarker.g.cs (1)
101Setter = static (obj, value) => global::System.Runtime.CompilerServices.Unsafe.Unbox<global::Microsoft.AspNetCore.Components.ComponentMarker>(obj).Key = value!,
src\aspnetcore\src\Shared\Components\ComponentMarker.cs (1)
71Key = key,
7 references to Key
Microsoft.AspNetCore.Components.Endpoints (7)
_generated\37\ServerComponentJsonContext.ComponentMarker.g.cs (2)
100Getter = static obj => ((global::Microsoft.AspNetCore.Components.ComponentMarker)obj).Key, 245global::System.Text.Json.JsonSerializer.Serialize(writer, ((global::Microsoft.AspNetCore.Components.ComponentMarker)value).Key, NullableComponentMarkerKey);
src\aspnetcore\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}";
src\aspnetcore\src\Shared\Components\ServerComponentSerializer.cs (1)
27var (sequence, serverComponent) = CreateSerializedServerComponent(invocationId, type, parameters, marker.Key, expiration);