15 references to RenderRootComponentAsync
Microsoft.AspNetCore.Components (1)
RenderTree\Renderer.cs (1)
246return RenderRootComponentAsync(componentId, ParameterView.Empty);
Microsoft.AspNetCore.Components.Authorization.Tests (2)
src\Components\Shared\test\TestRenderer.cs (2)
63var task = Dispatcher.InvokeAsync(() => base.RenderRootComponentAsync(componentId, parameters ?? ParameterView.Empty)); 71=> Dispatcher.InvokeAsync(() => base.RenderRootComponentAsync(componentId, parameters));
Microsoft.AspNetCore.Components.Endpoints.Tests (2)
ImportMapTest.cs (2)
296var task = Dispatcher.InvokeAsync(() => base.RenderRootComponentAsync(componentId, parameters ?? ParameterView.Empty)); 304=> Dispatcher.InvokeAsync(() => base.RenderRootComponentAsync(componentId, parameters));
Microsoft.AspNetCore.Components.Forms.Tests (2)
src\Components\Shared\test\TestRenderer.cs (2)
63var task = Dispatcher.InvokeAsync(() => base.RenderRootComponentAsync(componentId, parameters ?? ParameterView.Empty)); 71=> Dispatcher.InvokeAsync(() => base.RenderRootComponentAsync(componentId, parameters));
Microsoft.AspNetCore.Components.Server (1)
Circuits\RemoteRenderer.cs (1)
72return RenderRootComponentAsync(componentId, parameters);
Microsoft.AspNetCore.Components.Tests (2)
src\Components\Shared\test\TestRenderer.cs (2)
63var task = Dispatcher.InvokeAsync(() => base.RenderRootComponentAsync(componentId, parameters ?? ParameterView.Empty)); 71=> Dispatcher.InvokeAsync(() => base.RenderRootComponentAsync(componentId, parameters));
Microsoft.AspNetCore.Components.Web (1)
HtmlRendering\StaticHtmlRenderer.cs (1)
71var quiescenceTask = RenderRootComponentAsync(componentId, initialParameters);
Microsoft.AspNetCore.Components.Web.Tests (2)
src\Components\Shared\test\TestRenderer.cs (2)
63var task = Dispatcher.InvokeAsync(() => base.RenderRootComponentAsync(componentId, parameters ?? ParameterView.Empty)); 71=> Dispatcher.InvokeAsync(() => base.RenderRootComponentAsync(componentId, parameters));
Microsoft.AspNetCore.Components.WebAssembly (1)
Rendering\WebAssemblyRenderer.cs (1)
95return RenderRootComponentAsync(componentId, parameters);
Microsoft.AspNetCore.Components.WebView (1)
Services\WebViewRenderer.cs (1)
68=> base.RenderRootComponentAsync(componentId, parameters);