Node.ChildNodes

Node.ChildNodes property

Returns a live NodeList of child nodes of the given element where the first child node is assigned index 0. Child nodes include elements, text and comments.

Note: The NodeList being live means that its content is changed each time new children are added or removed.

public NodeList ChildNodes { get; }

Property Value

A live NodeList containing the children of the node.

Remarks

Reference:

DOM Standard.

See Also