Implemented interface member:
method
LookupNamespace
System.Xml.IXmlNamespaceResolver.LookupNamespace(System.String)
6 overrides of LookupNamespace
System.Data.SqlXml (1)
System\Xml\Xsl\XsltOld\XsltCompileContext.cs (1)
56public override string LookupNamespace(string prefix) {
System.Xml (5)
System\Xml\Core\XmlTextReaderImplHelpers.cs (1)
162public override string LookupNamespace( string prefix ) { return string.Empty; }
System\Xml\Schema\DtdValidator.cs (1)
24public 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)
124public override string LookupNamespace(string prefix) {
System\Xml\XPath\Internal\CompiledXPathExpr.cs (1)
100public override string LookupNamespace(string prefix) {
46 references to LookupNamespace
PresentationBuildTasks (1)
BuildTasks\Microsoft\Build\Tasks\Windows\UidManager.cs (1)
553string namespaceUri = nsmgr.LookupNamespace(reader.Prefix);
PresentationFramework (3)
src\Framework\System\Windows\Data\XmlNamespaceMappingCollection.cs (2)
133return (this.LookupNamespace(mapping.Prefix) == mapping.Uri.OriginalString); 235string ns = this.LookupNamespace(prefix);
src\Framework\System\Windows\Markup\ParserContext.cs (1)
131_xmlnsDictionary.Add(key, xmlnsManager.LookupNamespace(key));
System.Activities.Core.Presentation (1)
System\ServiceModel\Activities\Presentation\MessageQueryEditor.xaml.cs (1)
188messageContext.AddNamespace(prefix, namespaceManager.LookupNamespace(prefix));
System.Data.SqlXml (5)
System\Xml\Xsl\IlGen\XmlILConstructAnalyzer.cs (1)
997Debug.Assert(nd.NodeType != QilNodeType.NamespaceDecl || !this.nsmgr.HasNamespace(prefix) || this.nsmgr.LookupNamespace(prefix) == ns,
System\Xml\Xsl\Runtime\XmlQueryOutput.cs (3)
513if (this.nsmgr.LookupNamespace(prefix) != ns) 645nsExisting = this.nsmgr.LookupNamespace(prefix); 1235nsExisting = this.nsmgr.LookupNamespace(prefix);
System\Xml\Xsl\XsltOld\XsltCompileContext.cs (1)
712string ns = xsltContext.LookupNamespace(prefix);
System.ServiceModel (10)
System\ServiceModel\Configuration\XPathMessageFilterElementComparer.cs (1)
52string ns = namespaceManager.LookupNamespace(nsPrefix);
System\ServiceModel\Dispatcher\QueryMatcher.cs (1)
352if (prefix.Length > 0 && namespaces.LookupNamespace(prefix) == null)
System\ServiceModel\Dispatcher\XPathMessageContext.cs (1)
166string ns = LookupNamespace(prefix);
System\ServiceModel\Dispatcher\XPathMessageFilter.cs (5)
569ns = namespaces.LookupNamespace(prefix); 635if (nsPrefix.Length > 0 && (nsNS == null || (nsNS != null && nsNS != this.namespaces.LookupNamespace(nsPrefix)))) 657while (resolver.LookupNamespace(newPrefix) != null || this.namespaces.LookupNamespace(newPrefix) != null) 684writer.WriteAttributeString("xmlns", prefixMap[prefix], null, this.namespaces.LookupNamespace(prefix)); 735resolver.AddNamespace(pre, this.namespaces.LookupNamespace(pre));
System\ServiceModel\Dispatcher\XPathParser.cs (1)
110string ns = this.namespaces.LookupNamespace(prefix);
System\ServiceModel\XamlIntegration\XPathMessageContextMarkupExtension.cs (1)
43this.namespaces.Add(prefix, context.LookupNamespace(prefix));
System.Xml (26)
System\Xml\Core\XmlSubtreeReader.cs (3)
1022return nsManager.LookupNamespace(prefix); 1042if ( nsManager.LookupNamespace( prefix ) != ns ) { 1062else if ( prefix.Length != 0 && nsManager.LookupNamespace( prefix ) != ns ) {
System\Xml\Core\XmlTextReaderImpl.cs (6)
1348return namespaceManager.LookupNamespace( prefix ); 1882xmlContext.defaultNamespace = namespaceManager.LookupNamespace( string.Empty ); 2740xmlContext.defaultNamespace = namespaceManager.LookupNamespace( string.Empty ); 7002string ns = namespaceManager.LookupNamespace( node.prefix ); 8052xmlContext.defaultNamespace = namespaceManager.LookupNamespace( string.Empty ); 8318nodes[i].ns = namespaceManager.LookupNamespace( pref );
System\Xml\Core\XsdValidatingReader.cs (1)
1509return nsManager.LookupNamespace(prefix);
System\Xml\Dom\DocumentSchemaValidator.cs (1)
203string namespaceName = nsManager.LookupNamespace(prefix);
System\Xml\Dom\DocumentXmlWriter.cs (1)
408return namespaceManager.LookupNamespace(prefix);
System\Xml\Dom\XmlLoader.cs (1)
710string nsUri = mgr.LookupNamespace(attr.LocalName);
System\Xml\Schema\Asttree.cs (1)
602axis.Urn = nsmgr.LookupNamespace(axis.Prefix);
System\Xml\Schema\Inference\Infer.cs (1)
271String ns = this.NamespaceManager.LookupNamespace(this.nametable.Get(prefix));
System\Xml\Schema\Parser.cs (5)
318string ns = annotationNSManager.LookupNamespace(r.Prefix); 320XmlAttribute attr = CreateXmlNsAttribute(r.Prefix, namespaceManager.LookupNamespace(r.Prefix)); 324string elemNS = namespaceManager.LookupNamespace(r.Prefix); 333string attNS = annotationNSManager.LookupNamespace(r.Prefix); 335XmlAttribute attr = CreateXmlNsAttribute(r.Prefix, namespaceManager.LookupNamespace(r.Prefix));
System\Xml\Schema\XmlSchema.cs (2)
182namespaceManager.LookupNamespace("xs") == null ) { 187ns.Add(prefix, namespaceManager.LookupNamespace(prefix));
System\Xml\Schema\XsdBuilder.cs (1)
125string ns = nsMgr.LookupNamespace(prefix);
System\Xml\XmlNamespacemanager.cs (2)
97string defaultNs = LookupNamespace( string.Empty ); 286if ( String.Equals( LookupNamespace( prefix ), uri ) ) {
System\Xml\XPath\Internal\BaseAxisQuery.cs (1)
65nsUri = context.LookupNamespace(prefix);