1 instantiation of WebRootComponent
Microsoft.AspNetCore.Components.Server (1)
src\Components\Shared\src\WebRootComponentManager.cs (1)
141
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();
54
var
component =
WebRootComponent
.Create(renderer, componentType, ssrComponentId, key, parameters);
66
var
component = GetRequiredWebRootComponent(ssrComponentId);
72
var
component = GetRequiredWebRootComponent(ssrComponentId);
77
private
WebRootComponent
GetRequiredWebRootComponent(int ssrComponentId)
79
if (!_webRootComponents.TryGetValue(ssrComponentId, out
var
component))
126
public static
WebRootComponent
Create(