1 instantiation of ComponentMarker
Microsoft.AspNetCore.Components.Server (1)
src\Shared\Components\ComponentMarker.cs (1)
64return new()
9 references to ComponentMarker
Microsoft.AspNetCore.Components.Server (9)
Circuits\ServerComponentDeserializer.cs (7)
96var markers = JsonSerializer.Deserialize<IEnumerable<ComponentMarker>>(serializedComponentRecords, ServerComponentSerializationSettings.JsonSerializationOptions); 101foreach (var marker in markers) 145public bool TryDeserializeWebRootComponentDescriptor(ComponentMarker record, [NotNullWhen(true)] out WebRootComponentDescriptor? result) 227private bool TryDeserializeServerComponent(ComponentMarker record, out ServerComponent result) 231if (record.Type is not (ComponentMarker.ServerMarkerType or ComponentMarker.AutoMarkerType)) 272private (ComponentDescriptor, ServerComponent) DeserializeComponentDescriptor(ComponentMarker record)
src\Components\Shared\src\RootComponentOperation.cs (1)
17public ComponentMarker? Marker { get; set; }
src\Shared\Components\ComponentMarker.cs (1)
62public static ComponentMarker Create(string type, bool prerendered, ComponentMarkerKey? key)