1 instantiation of WebRootComponent
Microsoft.AspNetCore.Components.Server (1)
src\Components\Shared\src\WebRootComponentManager.cs (1)
111
return
new
(componentType, ssrComponentIdString, key.Value, interactiveComponentId, initialParameters);
8 references to WebRootComponent
Microsoft.AspNetCore.Components.Server (8)
src\Components\Shared\src\WebRootComponentManager.cs (8)
33
private readonly Dictionary<int,
WebRootComponent
> _webRootComponents = new();
53
var
component =
WebRootComponent
.Create(renderer, componentType, ssrComponentId, key, parameters);
65
var
component = GetRequiredWebRootComponent(ssrComponentId);
71
var
component = GetRequiredWebRootComponent(ssrComponentId);
76
private
WebRootComponent
GetRequiredWebRootComponent(int ssrComponentId)
78
if (!_webRootComponents.TryGetValue(ssrComponentId, out
var
component))
96
public static
WebRootComponent
Create(