Entitize Method (HtmlNode)

Html Agility Pack

Collapse imageExpand ImageCopy imageCopyHover image
Clone and entitize an HtmlNode. This will affect attribute values and nodes' text. It will also entitize all child nodes.

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

Syntax

C#
public static HtmlNode Entitize(
	HtmlNode node
)
Visual Basic
Public Shared Function Entitize ( _
	node As HtmlNode _
) As HtmlNode
Visual C++
public:
static HtmlNode^ Entitize(
	HtmlNode^ node
)

Parameters

node
Type: HtmlAgilityPack..::..HtmlNode
The node to entitize.

Return Value

An entitized cloned node.

See Also