SelectSingleNode Method

Html Agility Pack

Collapse imageExpand ImageCopy imageCopyHover image
Selects the first XmlNode that matches the XPath expression.

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

Syntax

C#
public HtmlNode SelectSingleNode(
	string xpath
)
Visual Basic
Public Function SelectSingleNode ( _
	xpath As String _
) As HtmlNode
Visual C++
public:
HtmlNode^ SelectSingleNode(
	String^ xpath
)

Parameters

xpath
Type: System..::..String
The XPath expression. May not be null.

Return Value

The first HtmlNode that matches the XPath query or a null reference if no matching node was found.

See Also