MoveToNamespace Method

Html Agility Pack

Collapse imageExpand ImageCopy imageCopyHover image
Moves the XPathNavigator to the namespace node with the specified local name. Always returns false for the HtmlNavigator implementation.

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

Syntax

C#
public override bool MoveToNamespace(
	string name
)
Visual Basic
Public Overrides Function MoveToNamespace ( _
	name As String _
) As Boolean
Visual C++
public:
virtual bool MoveToNamespace(
	String^ name
) override

Parameters

name
Type: System..::..String
The local name of the namespace node.

Return Value

Always returns false for the HtmlNavigator implementation.

See Also