Table of Contents

Class SetChildNodesEventArgs

Namespace
Selenium.WebDriver.BiDi.Cdp.DOM
Assembly
Selenium.WebDriver.BiDi.Cdp.dll

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
EventArgs
SetChildNodesEventArgs
Implements
IEquatable<EventArgs>
Inherited Members
EventArgs.ToString()
EventArgs.GetHashCode()
EventArgs.Equals(EventArgs)
EventArgs.<Clone>$()
EventArgs.BiDi
EventArgs.AdditionalData
EventArgs.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

ParentId NodeId

Parent node id to populate with children.

Nodes ImmutableArray<Node>

Child nodes array.

Properties

Nodes

Child nodes array.

public ImmutableArray<Node> Nodes { get; init; }

Property Value

ImmutableArray<Node>

ParentId

Parent node id to populate with children.

public NodeId ParentId { get; init; }

Property Value

NodeId