1 write to Key
Microsoft.AspNetCore.Components.Server (1)
src\Shared\Components\ComponentMarker.cs (1)
71Key = key,
10 references to Key
Microsoft.AspNetCore.Components.Server (8)
Circuits\CircuitHost.cs (2)
853operation.Marker.Value.Key, 862operation.Marker.Value.Key,
Circuits\ServerComponentDeserializer.cs (1)
154if (record.Key != serverComponent.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}";
src\Shared\Components\ServerComponentSerializer.cs (1)
27var (sequence, serverComponent) = CreateSerializedServerComponent(invocationId, type, parameters, marker.Key, expiration);
Microsoft.AspNetCore.Components.Server.Tests (2)
Circuits\CircuitPersistenceManagerTest.cs (2)
380Assert.Equal(key.LocationHash, marker.Key.Value.LocationHash); 381Assert.Equal(key.FormattedComponentKey, marker.Key.Value.FormattedComponentKey);