GetElementbyId Method

Html Agility Pack

Collapse imageExpand ImageCopy imageCopyHover image
Gets the HTML node with the specified 'id' attribute value.

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

Syntax

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

Parameters

id
Type: System..::..String
The attribute id to match. May not be null.

Return Value

The HTML node with the matching id or null if not found.

See Also