2 writes to _markerKey
Microsoft.AspNetCore.Components.Endpoints (2)
Rendering\SSRRenderModeBoundary.cs (2)
182
_markerKey
??= GenerateMarkerKey(sequence, componentKey);
241
return
_markerKey
??= GenerateMarkerKey(sequence, componentKey);
3 references to _markerKey
Microsoft.AspNetCore.Components.Endpoints (3)
Rendering\SSRRenderModeBoundary.cs (3)
190
InteractiveServerRenderMode server => ComponentMarker.Create(ComponentMarker.ServerMarkerType, server.Prerender,
_markerKey
),
191
InteractiveWebAssemblyRenderMode webAssembly => ComponentMarker.Create(ComponentMarker.WebAssemblyMarkerType, webAssembly.Prerender,
_markerKey
),
192
InteractiveAutoRenderMode auto => ComponentMarker.Create(ComponentMarker.AutoMarkerType, auto.Prerender,
_markerKey
),