Click or drag to resize

HtmlNodeInsertAfter Method

Inserts the specified node immediately after the specified reference node.

Namespace:  WorkflowGen.My.HtmlAgilityPack
Assembly:  WorkflowGen.My (in WorkflowGen.My.dll) Version: 8.1.3.0 (8.1.3.20220620)
Syntax
public HtmlNode InsertAfter(
	HtmlNode newChild,
	HtmlNode refChild
)

Parameters

newChild
Type: WorkflowGen.My.HtmlAgilityPackHtmlNode
The node to insert. May not be null.
refChild
Type: WorkflowGen.My.HtmlAgilityPackHtmlNode
The node that is the reference node. The newNode is placed after the refNode.

Return Value

Type: HtmlNode
The node being inserted.
See Also