1 type derived from ComponentNode
Microsoft.AspNetCore.Components.WebView.Test (1)
Infrastructure\RootComponentNode.cs (1)
6
internal class RootComponentNode :
ComponentNode
2 instantiations of ComponentNode
Microsoft.AspNetCore.Components.WebView.Test (2)
Infrastructure\ContainerNode.cs (1)
69
var componentElement = new
ComponentNode
(childComponentId);
Infrastructure\TestDocument.cs (1)
51
component = new
ComponentNode
(componentId);
5 references to ComponentNode
Microsoft.AspNetCore.Components.WebView.Test (5)
Infrastructure\ContainerNode.cs (2)
67
internal
ComponentNode
CreateAndInsertComponent(int childComponentId, int childIndex)
69
var
componentElement = new ComponentNode(childComponentId);
Infrastructure\TestDocument.cs (3)
14
private readonly Dictionary<long,
ComponentNode
> _componentsById = new();
49
if (!_componentsById.TryGetValue(componentId, out
var
component))
265
var
containerElement = parent.CreateAndInsertComponent(childComponentId, childIndex);