1 write to Key
Microsoft.AspNetCore.Components.Endpoints (1)
src\Shared\Components\ComponentMarker.cs (1)
71Key = key,
5 references to Key
Microsoft.AspNetCore.Components.Endpoints (5)
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\Shared\Components\ServerComponentSerializer.cs (1)
27var (sequence, serverComponent) = CreateSerializedServerComponent(invocationId, type, parameters, marker.Key, expiration);