1 write to ParentComponentState
Microsoft.AspNetCore.Components (1)
Rendering\ComponentState.cs (1)
37ParentComponentState = parentComponentState;
7 references to ParentComponentState
Microsoft.AspNetCore.Components (4)
RenderTree\Renderer.cs (1)
725if (componentState.ParentComponentState is not null)
SupplyParameterFromPersistentComponentStateValueProvider.cs (3)
224if (componentState.ParentComponentState is not { } parentComponentState) 251componentState.ParentComponentState == null ? "" : GetComponentType(componentState.ParentComponentState);
Microsoft.AspNetCore.Components.Endpoints (3)
Rendering\EndpointHtmlRenderer.EventDispatch.cs (1)
202for (var current = GetComponentState(componentId); current != null; current = current.ParentComponentState)
Rendering\EndpointHtmlRenderer.Prerendering.cs (1)
73currentComponentState = currentComponentState.ParentComponentState;
Rendering\EndpointHtmlRenderer.Streaming.cs (1)
196while (componentState.ParentComponentState is { } parentComponentState)