HtmlAgilityPack.HtmlNodeNavigator.GetNamespace C# (CSharp) Method

GetNamespace() public method

Returns the value of the namespace node corresponding to the specified local name. Always returns string.Empty for the HtmlNavigator implementation.
public GetNamespace ( string name ) : string
name string The local name of the namespace node.
return string
        public override string GetNamespace(string name)
        {
            InternalTrace("name=" + name);
            return string.Empty;
        }