2 instantiations of SSRRenderModeBoundary
Microsoft.AspNetCore.Components.Endpoints (2)
Rendering\EndpointHtmlRenderer.Prerendering.cs (2)
41return new SSRRenderModeBoundary(_httpContext, componentType, renderMode); 123: new SSRRenderModeBoundary(_httpContext, componentType, prerenderMode);
11 references to SSRRenderModeBoundary
Microsoft.AspNetCore.Components.Endpoints (11)
Rendering\EndpointComponentState.cs (1)
71if (ParentComponentState != null && ParentComponentState.Component is SSRRenderModeBoundary boundary)
Rendering\EndpointHtmlRenderer.Prerendering.cs (7)
28var closestRenderModeBoundary = parentComponentId.HasValue 48var ssrRenderBoundary = GetClosestRenderModeBoundary(componentState); 58private SSRRenderModeBoundary? GetClosestRenderModeBoundary(int componentId) 64private static SSRRenderModeBoundary? GetClosestRenderModeBoundary(ComponentState componentState) 70if (currentComponentState.Component is SSRRenderModeBoundary boundary) 288if (boundaryComponentState is null || boundaryComponentState.Component is not SSRRenderModeBoundary boundary) 310frame.Component is SSRRenderModeBoundary candidate &&
Rendering\EndpointHtmlRenderer.Streaming.cs (3)
320var liveCachedComponentBoundary = componentState.Component as SSRRenderModeBoundary; 333if (componentState.Component is SSRRenderModeBoundary boundary)