LookupNamespace() public méthode

public LookupNamespace ( String prefix ) : String
prefix String
Résultat String
Exemple #1
0
        public override string?LookupNamespace(string prefix)
        {
            string?ns = _impl.LookupNamespace(prefix);

            if (ns != null && ns.Length == 0)
            {
                ns = null;
            }
            return(ns);
        }
 // Returns NamespaceURI associated with the specified prefix in the current namespace scope.
 public override String LookupNamespace(String prefix)
 {
     return(coreReaderImpl.LookupNamespace(prefix));
 }
Exemple #3
0
 // Returns NamespaceURI associated with the specified prefix in the current namespace scope.
 public override string?LookupNamespace(string prefix)
 {
     return(_coreReaderImpl.LookupNamespace(prefix));
 }