Implemented interface member:
method
LookupNamespace
System.Xml.IXmlNamespaceResolver.LookupNamespace(System.String)
1 override of LookupNamespace
System.Private.Xml (1)
System\Xml\Dom\DocumentXPathNavigator.cs (1)
695public override string? LookupNamespace(string prefix)
6 references to LookupNamespace
System.Private.Xml (6)
System\Xml\Dom\DocumentXPathNavigator.cs (1)
697string? ns = base.LookupNamespace(prefix);
System\Xml\XPath\XPathNavigator.cs (2)
411return navSave.LookupNamespace(prefix); 459if (namespaceURI == LookupNamespace(string.Empty))
System\Xml\XPath\XPathNavigatorReader.cs (2)
152return _nav.LookupNamespace(prefix); 954return _nav.LookupNamespace(prefix);
System\Xml\Xsl\Runtime\XsltFunctions.cs (1)
512string? ns = currentNode.LookupNamespace(prefix);