6 references to RenderRootComponentAsync
Microsoft.AspNetCore.Components (1)
RenderTree\Renderer.cs (1)
281return RenderRootComponentAsync(componentId, ParameterView.Empty);
Microsoft.AspNetCore.Components.Server (3)
Circuits\RemoteRenderer.cs (1)
73return RenderRootComponentAsync(componentId, parameters);
src\aspnetcore\src\Components\Shared\src\WebRootComponentManager.cs (2)
224return renderer.RenderRootComponentAsync(_interactiveComponentId, _latestParameters.Parameters); 230await renderer.RenderRootComponentAsync(_interactiveComponentId, _latestParameters.Parameters);
Microsoft.AspNetCore.Components.Web (2)
HtmlRendering\StaticHtmlRenderer.cs (1)
70var quiescenceTask = RenderRootComponentAsync(componentId, initialParameters);
JSComponents\JSComponentInterop.cs (1)
149_ = Renderer.RenderRootComponentAsync(componentId, parameterViewBuilder.ToParameterView());