Implemented interface member:
method
LookupPrefix
System.Xml.IXmlNamespaceResolver.LookupPrefix(System.String)
2 overrides of LookupPrefix
System.Xml (2)
System\Xml\Core\XmlTextReaderImplHelpers.cs (1)
163public override string LookupPrefix( string uri ) { return null; }
System\Xml\Schema\SchemaNamespacemanager.cs (1)
36public override string LookupPrefix(string ns) {
17 references to LookupPrefix
PresentationBuildTasks (1)
BuildTasks\Microsoft\Build\Tasks\Windows\UidManager.cs (1)
591string prefix = nsmgr.LookupPrefix(XamlReaderHelper.DefinitionNamespaceURI);
PresentationFramework (4)
src\Framework\System\Windows\Annotations\LocatorPart.cs (4)
372string corePrefix = namespaceManager.LookupPrefix(AnnotationXmlConstants.Namespaces.CoreSchemaNamespace); 373string prefix = namespaceManager.LookupPrefix(this.PartType.Namespace); 401string corePrefix = namespaceManager.LookupPrefix(AnnotationXmlConstants.Namespaces.CoreSchemaNamespace); 402string prefix = namespaceManager.LookupPrefix(this.PartType.Namespace);
System.Data.SqlXml (1)
System\Xml\Xsl\Runtime\XmlQueryOutput.cs (1)
1279genPrefix = this.nsmgr.LookupPrefix(ns);
System.Runtime.Serialization (1)
System\Runtime\Serialization\XPathQueryGenerator.cs (1)
140string prefix = namespaces.LookupPrefix(ns);
System.ServiceModel (2)
System\ServiceModel\Dispatcher\XPathParser.cs (2)
434string prefix = this.context.LookupPrefix(functionName.Namespace); 985string prefix = this.context.LookupPrefix(varName.Namespace);
System.Xml (8)
System\Xml\Core\XmlSubtreeReader.cs (1)
1029return nsManager.LookupPrefix(namespaceName);
System\Xml\Core\XmlTextReaderImpl.cs (2)
1856return namespaceManager.LookupPrefix( namespaceName ); 8253prefix = namespaceManager.LookupPrefix( ns );
System\Xml\Core\XsdValidatingReader.cs (1)
1518return nsManager.LookupPrefix(namespaceName);
System\Xml\Dom\DocumentSchemaValidator.cs (1)
211string prefix = nsManager.LookupPrefix(namespaceName);
System\Xml\Dom\DocumentXmlWriter.cs (1)
412return namespaceManager.LookupPrefix(namespaceName);
System\Xml\Schema\XmlSchema.cs (1)
181if (!ignoreXS && namespaceManager.LookupPrefix(XmlReservedNs.NsXs) == null &&
System\Xml\Schema\XsdValidator.cs (1)
525if (SchemaInfo.TargetNamespaces.ContainsKey(uri) && nsManager.LookupPrefix(uri) != null) {