LookupNamespace() public method

public LookupNamespace ( String prefix ) : String
prefix String
return String
Example #1
0
        public override String LookupNamespace(String prefix)
        {
            string ns = impl.LookupNamespace(prefix);

            if (ns != null && ns.Length == 0)
            {
                ns = null;
            }
            return(ns);
        }