Class SetChildNodesEventArgs
Fired when backend wants to provide client with the missing DOM structure. This happens upon most of the calls requesting node ids.
public sealed record SetChildNodesEventArgs : EventArgs, IEquatable<EventArgs>, IEquatable<SetChildNodesEventArgs>
- Inheritance
-
EventArgsSetChildNodesEventArgs
- Implements
-
IEquatable<EventArgs>
- Inherited Members
-
EventArgs.ToString()EventArgs.GetHashCode()EventArgs.Equals(EventArgs)EventArgs.<Clone>$()EventArgs.BiDiEventArgs.AdditionalDataEventArgs.AdditionalMessageData
Constructors
SetChildNodesEventArgs(NodeId, ImmutableArray<Node>)
Fired when backend wants to provide client with the missing DOM structure. This happens upon most of the calls requesting node ids.
public SetChildNodesEventArgs(NodeId ParentId, ImmutableArray<Node> Nodes)
Parameters
ParentIdNodeIdParent node id to populate with children.
NodesImmutableArray<Node>Child nodes array.
Properties
Nodes
Child nodes array.
public ImmutableArray<Node> Nodes { get; init; }
Property Value
ParentId
Parent node id to populate with children.
public NodeId ParentId { get; init; }