22 implementations of LookupNamespace
Microsoft.Maui.Controls.Xaml (1)
XamlServiceProvider.cs (1)
286 public string LookupNamespace(string prefix)
PresentationBuildTasks (1)
src\Microsoft.DotNet.Wpf\src\Shared\System\Windows\Markup\XmlWrappingReader.cs (1)
129public override string LookupNamespace( string prefix )
System.IO.Packaging (1)
System\IO\Packaging\XmlWrappingReader.cs (1)
105public override string? LookupNamespace(string prefix)
System.Private.Xml (18)
System\Xml\BinaryXml\XmlBinaryReader.cs (1)
900public override string? LookupNamespace(string prefix)
System\Xml\Core\XmlAsyncCheckReader.cs (2)
933string? IXmlNamespaceResolver.LookupNamespace(string prefix) 995string? IXmlNamespaceResolver.LookupNamespace(string prefix)
System\Xml\Core\XmlCharCheckingReader.cs (1)
654string? IXmlNamespaceResolver.LookupNamespace(string prefix)
System\Xml\Core\XmlSubtreeReader.cs (1)
1223string? IXmlNamespaceResolver.LookupNamespace(string prefix)
System\Xml\Core\XmlTextReader.cs (1)
345string? IXmlNamespaceResolver.LookupNamespace(string prefix)
System\Xml\Core\XmlTextReaderImpl.cs (1)
1931string? IXmlNamespaceResolver.LookupNamespace(string prefix)
System\Xml\Core\XmlValidatingReader.cs (1)
271string? IXmlNamespaceResolver.LookupNamespace(string prefix)
System\Xml\Core\XmlValidatingReaderImpl.cs (1)
803string? IXmlNamespaceResolver.LookupNamespace(string prefix)
System\Xml\Core\XmlWellFormedWriterHelpers.cs (1)
30string? IXmlNamespaceResolver.LookupNamespace(string prefix)
System\Xml\Core\XsdValidatingReader.cs (1)
1932string? IXmlNamespaceResolver.LookupNamespace(string prefix)
System\Xml\Dom\DocumentSchemaValidator.cs (1)
222public string? LookupNamespace(string prefix) =>
System\Xml\Dom\DocumentXmlWriter.cs (1)
496string? IXmlNamespaceResolver.LookupNamespace(string prefix)
System\Xml\Dom\XmlNodeReader.cs (1)
1917string? IXmlNamespaceResolver.LookupNamespace(string prefix)
System\Xml\Schema\XmlAtomicValue.cs (1)
51public string? LookupNamespace(string? prefix)
System\Xml\XmlNamespacemanager.cs (1)
272public virtual string? LookupNamespace(string prefix)
System\Xml\XPath\XPathNavigator.cs (1)
400public virtual string? LookupNamespace(string prefix)
System\Xml\XPath\XPathNavigatorReader.cs (1)
150string? IXmlNamespaceResolver.LookupNamespace(string prefix)
System.Xaml (1)
src\Microsoft.DotNet.Wpf\src\Shared\System\Windows\Markup\XmlWrappingReader.cs (1)
129public override string LookupNamespace( string prefix )
26 references to LookupNamespace
Microsoft.Maui.Controls.Build.Tasks (4)
CompiledConverters\TypeTypeConverter.cs (2)
27 xmlType = new XmlType(node.NamespaceResolver.LookupNamespace(split[0]), split[1], null); 29 xmlType = new XmlType(node.NamespaceResolver.LookupNamespace(""), split[0], null);
ExpandMarkupsVisitor.cs (2)
134 var namespaceuri = nsResolver.LookupNamespace(prefix) ?? ""; 170 propertyPrefix == "" ? "" : nsResolver.LookupNamespace(propertyPrefix),
Microsoft.Maui.Controls.SourceGen (1)
src\Controls\src\Xaml\TypeArgumentsParser.cs (1)
82 var namespaceuri = resolver.LookupNamespace(prefix);
Microsoft.Maui.Controls.Xaml (5)
ExpandMarkupsVisitor.cs (2)
134 var namespaceuri = nsResolver.LookupNamespace(prefix) ?? ""; 161 propertyPrefix == "" ? null : nsResolver.LookupNamespace(propertyPrefix),
PruneIgnoredNodesVisitor.cs (1)
32 if (node.NamespaceResolver.LookupNamespace(prefixes[i]) == XamlParser.MauiDesignUri)
TypeArgumentsParser.cs (1)
82 var namespaceuri = resolver.LookupNamespace(prefix);
XamlParser.cs (1)
222 namespaceUri = ((IXmlNamespaceResolver)reader).LookupNamespace("");
System.Private.Xml (16)
System\Xml\Core\XmlAsyncCheckReader.cs (2)
935return _readerAsIXmlNamespaceResolver.LookupNamespace(prefix); 997return _readerAsIXmlNamespaceResolver.LookupNamespace(prefix);
System\Xml\Core\XmlCharCheckingReader.cs (1)
656return readerAsNSResolver.LookupNamespace(prefix);
System\Xml\Core\XmlSubtreeReader.cs (1)
1161return ((IXmlNamespaceResolver)this).LookupNamespace(prefix);
System\Xml\Core\XmlWellFormedWriter.cs (4)
271string? defaultNs = _predefinedNamespaces.LookupNamespace(string.Empty); 1649string? definedNs = _predefinedNamespaces.LookupNamespace(prefix); 1714string? definedNs = _predefinedNamespaces.LookupNamespace(prefix); 1996return _predefinedNamespaces?.LookupNamespace(prefix);
System\Xml\Core\XsdValidatingReader.cs (4)
1556return _thisNSResolver.LookupNamespace(prefix); 1936return _coreReaderNSResolver.LookupNamespace(prefix); 2228ns = _thisNSResolver.LookupNamespace(attrPrefix)!; 2273ns = _thisNSResolver.LookupNamespace(attrPrefix)!;
System\Xml\Schema\XmlAtomicValue.cs (1)
145_nsPrefix = new NamespacePrefixForQName(prefix, nsResolver.LookupNamespace(prefix)!);
System\Xml\Schema\XmlValueConverter.cs (1)
642ns = nsResolver.LookupNamespace(prefix);
System\Xml\XmlQualifiedName.cs (1)
152string? uri = nsmgr.LookupNamespace(prefix);
System\Xml\XPath\Internal\CompiledXPathExpr.cs (1)
129string? ns = _nsResolver.LookupNamespace(prefix);