HtmlAgilityPack.HtmlNodeNavigator.GetNamespace C# (CSharp) Метод

GetNamespace() публичный Метод

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.
Результат string
        public override string GetNamespace(string name)
        {
            InternalTrace("name=" + name);
            return string.Empty;
        }