GetNamespace Method

Html Agility Pack

Collapse imageExpand ImageCopy imageCopyHover image
Returns the value of the namespace node corresponding to the specified local name. Always returns string.Empty for the HtmlNavigator implementation.

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

Syntax

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

Parameters

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

Return Value

Always returns string.Empty for the HtmlNavigator implementation.

See Also