Implemented interface member:
method
LookupNamespace
System.Xml.IXmlNamespaceResolver.LookupNamespace(System.String)
6 overrides of LookupNamespace
System.Private.Xml (6)
System\Xml\Core\XmlTextReaderImplHelpers.cs (1)
159public override string LookupNamespace(string? prefix) { return string.Empty; }
System\Xml\Schema\DtdValidator.cs (1)
23public override string LookupNamespace(string prefix) { return prefix; }
System\Xml\Schema\SchemaNamespacemanager.cs (1)
20public override string? LookupNamespace(string prefix)
System\Xml\Schema\XsdBuilder.cs (1)
128public override string? LookupNamespace(string prefix) =>
System\Xml\XPath\Internal\CompiledXPathExpr.cs (1)
122public override string LookupNamespace(string prefix)
System\Xml\Xsl\XsltOld\XsltCompileContext.cs (1)
59public override string LookupNamespace(string prefix)
36 references to LookupNamespace
PresentationBuildTasks (1)
Microsoft\Build\Tasks\Windows\UidManager.cs (1)
547string namespaceUri = nsmgr.LookupNamespace(reader.Prefix);
PresentationFramework (3)
System\Windows\Data\XmlNamespaceMappingCollection.cs (2)
128return (this.LookupNamespace(mapping.Prefix) == mapping.Uri.OriginalString); 228string ns = this.LookupNamespace(prefix);
System\Windows\Markup\ParserContext.cs (1)
121_xmlnsDictionary.Add(key, xmlnsManager.LookupNamespace(key));
System.Private.Xml (31)
System\Xml\Core\XmlSubtreeReader.cs (3)
1229return _nsManager.LookupNamespace(prefix); 1253if (_nsManager.LookupNamespace(prefix) != ns) 1279else if (prefix.Length != 0 && _nsManager.LookupNamespace(prefix) != ns)
System\Xml\Core\XmlTextReaderImpl.cs (6)
1416return _namespaceManager.LookupNamespace(prefix); 1989_xmlContext.defaultNamespace = _namespaceManager.LookupNamespace(string.Empty)!; 2975_xmlContext.defaultNamespace = _namespaceManager.LookupNamespace(string.Empty)!; 7763string? ns = _namespaceManager.LookupNamespace(node.prefix); 9017_xmlContext.defaultNamespace = _namespaceManager.LookupNamespace(string.Empty)!; 9322_nodes[i].ns = _namespaceManager.LookupNamespace(pref);
System\Xml\Core\XsdValidatingReader.cs (1)
1941return _nsManager.LookupNamespace(prefix);
System\Xml\Dom\DocumentSchemaValidator.cs (1)
223_nsManager.LookupNamespace(prefix) ??
System\Xml\Dom\DocumentXmlWriter.cs (1)
498return _namespaceManager!.LookupNamespace(prefix);
System\Xml\Dom\XmlLoader.cs (1)
815string? nsUri = mgr.LookupNamespace(attr.LocalName);
System\Xml\Schema\Asttree.cs (1)
697axis.Urn = nsmgr.LookupNamespace(axis.Prefix);
System\Xml\Schema\Inference\Infer.cs (1)
246string ns = _namespaceManager.LookupNamespace(_nametable.Get(prefix)!)!;
System\Xml\Schema\Parser.cs (5)
361string? ns = _annotationNSManager!.LookupNamespace(r.Prefix); 364XmlAttribute attr = CreateXmlNsAttribute(r.Prefix, _namespaceManager!.LookupNamespace(r.Prefix)!); 369string elemNS = _namespaceManager!.LookupNamespace(r.Prefix)!; 381string? attNS = _annotationNSManager.LookupNamespace(r.Prefix); 384XmlAttribute attr = CreateXmlNsAttribute(r.Prefix, _namespaceManager!.LookupNamespace(r.Prefix)!);
System\Xml\Schema\XmlSchema.cs (2)
153namespaceManager.LookupNamespace("xs") == null) 161ns.Add(prefix, namespaceManager.LookupNamespace(prefix!));
System\Xml\Schema\XsdBuilder.cs (1)
129_nsMgr.LookupNamespace(prefix) ?? _reader.LookupNamespace(prefix);
System\Xml\XmlNamespacemanager.cs (2)
84string? defaultNs = LookupNamespace(string.Empty); 330if (string.Equals(LookupNamespace(prefix), uri))
System\Xml\XPath\Internal\BaseAxisQuery.cs (1)
65_nsUri = context.LookupNamespace(_prefix);
System\Xml\Xsl\IlGen\XmlILConstructAnalyzer.cs (1)
1095Debug.Assert(nd.NodeType != QilNodeType.NamespaceDecl || !_nsmgr.HasNamespace(prefix) || _nsmgr.LookupNamespace(prefix) == ns,
System\Xml\Xsl\Runtime\XmlQueryOutput.cs (3)
561if (_nsmgr.LookupNamespace(prefix) != ns) 710nsExisting = _nsmgr.LookupNamespace(prefix); 1364nsExisting = _nsmgr.LookupNamespace(prefix);
System\Xml\Xsl\XsltOld\XsltCompileContext.cs (1)
862string? ns = xsltContext.LookupNamespace(prefix);
System.Security.Cryptography.Xml (1)
System\Security\Cryptography\Xml\XmlDsigXPathTransform.cs (1)
107element.SetAttribute("xmlns:" + prefix, _nsm.LookupNamespace(prefix));