HtmlAgilityPack.HtmlNodeNavigator.MoveToFirstNamespace C# (CSharp) Method

MoveToFirstNamespace() public method

Moves the XPathNavigator to the first namespace node of the current element. Always returns false for the HtmlNavigator implementation.
public MoveToFirstNamespace ( XPathNamespaceScope scope ) : bool
scope XPathNamespaceScope An XPathNamespaceScope value describing the namespace scope.
return bool
        public override bool MoveToFirstNamespace(XPathNamespaceScope scope)
        {
            InternalTrace(null);
            return false;
        }