HtmlAgilityPack.HtmlNodeNavigator.MoveToNamespace C# (CSharp) Method

MoveToNamespace() public method

Moves the XPathNavigator to the namespace node with the specified local name. Always returns false for the HtmlNavigator implementation.
public MoveToNamespace ( string name ) : bool
name string The local name of the namespace node.
return bool
        public override bool MoveToNamespace(string name)
        {
            InternalTrace("name=" + name);
            return false;
        }