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