Implemented interface member:
method
LookupPrefix
System.Xml.IXmlNamespaceResolver.LookupPrefix(System.String)
2 overrides of LookupPrefix
System.Private.Xml (2)
System\Xml\Core\XmlTextReaderImplHelpers.cs (1)
160public override string? LookupPrefix(string uri) { return null; }
System\Xml\Schema\SchemaNamespacemanager.cs (1)
34public override string? LookupPrefix(string ns)
18 references to LookupPrefix
Microsoft.Build.Tasks.Core (1)
ManifestUtil\XmlUtil.cs (1)
26string prefix = !String.IsNullOrEmpty(r.Prefix) ? r.Prefix : nsmgr.LookupPrefix(r.NamespaceURI);
PresentationBuildTasks (1)
Microsoft\Build\Tasks\Windows\UidManager.cs (1)
585string prefix = nsmgr.LookupPrefix(XamlReaderHelper.DefinitionNamespaceURI);
PresentationFramework (4)
System\Windows\Annotations\LocatorPart.cs (4)
365string corePrefix = namespaceManager.LookupPrefix(AnnotationXmlConstants.Namespaces.CoreSchemaNamespace); 366string prefix = namespaceManager.LookupPrefix(this.PartType.Namespace); 392string corePrefix = namespaceManager.LookupPrefix(AnnotationXmlConstants.Namespaces.CoreSchemaNamespace); 393string prefix = namespaceManager.LookupPrefix(this.PartType.Namespace);
PresentationFramework-SystemXml (1)
SystemXmlExtension.cs (1)
79string prefix = namespaceManager.LookupPrefix(node.NamespaceURI);
ReachFramework (1)
PrintConfig\PrintSchemaShim.cs (1)
462string prefix = xmlNsMgr.LookupPrefix(xmlNamespace);
System.Private.DataContractSerialization (1)
System\Runtime\Serialization\XPathQueryGenerator.cs (1)
146string? prefix = _namespaces.LookupPrefix(ns);
System.Private.Xml (9)
System\Xml\Core\XmlSubtreeReader.cs (1)
1238return _nsManager.LookupPrefix(namespaceName);
System\Xml\Core\XmlTextReaderImpl.cs (2)
1953return _namespaceManager.LookupPrefix(namespaceName); 9246prefix = _namespaceManager.LookupPrefix(ns);
System\Xml\Core\XsdValidatingReader.cs (1)
1954return _nsManager.LookupPrefix(namespaceName);
System\Xml\Dom\DocumentSchemaValidator.cs (1)
227_nsManager.LookupPrefix(namespaceName) ??
System\Xml\Dom\DocumentXmlWriter.cs (1)
503return _namespaceManager!.LookupPrefix(namespaceName);
System\Xml\Schema\XmlSchema.cs (1)
152if (!ignoreXS && namespaceManager.LookupPrefix(XmlReservedNs.NsXs) == null &&
System\Xml\Schema\XsdValidator.cs (1)
623if (SchemaInfo!.TargetNamespaces.ContainsKey(uri) && _nsManager.LookupPrefix(uri) != null)
System\Xml\Xsl\Runtime\XmlQueryOutput.cs (1)
1410genPrefix = _nsmgr.LookupPrefix(ns);