AppendChildren Method

Html Agility Pack

Collapse imageExpand ImageCopy imageCopyHover image
Adds the specified node to the end of the list of children of this node.

Namespace: HtmlAgilityPack
Assembly: HtmlAgilityPack (in HtmlAgilityPack.dll) Version: 1.4.0.0 (1.4.0.0)

Syntax

C#
public void AppendChildren(
	HtmlNodeCollection newChildren
)
Visual Basic
Public Sub AppendChildren ( _
	newChildren As HtmlNodeCollection _
)
Visual C++
public:
void AppendChildren(
	HtmlNodeCollection^ newChildren
)

Parameters

newChildren
Type: HtmlAgilityPack..::..HtmlNodeCollection
The node list to add. May not be null.

See Also