10 references to RenderRootComponentAsync
Microsoft.AspNetCore.Components (1)
RenderTree\Renderer.cs (1)
296return 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());
Microsoft.AspNetCore.Components.WebAssembly (3)
Rendering\WebAssemblyRenderer.cs (1)
123return 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.WebView (1)
Services\WebViewRenderer.cs (1)
70=> base.RenderRootComponentAsync(componentId, parameters);