22 implementations of GetNamespacesInScope
Microsoft.Maui.Controls.Xaml (1)
XamlServiceProvider.cs (1)
284 public IDictionary<string, string> GetNamespacesInScope(XmlNamespaceScope scope) => throw new NotImplementedException();
PresentationBuildTasks (1)
src\Microsoft.DotNet.Wpf\src\Shared\System\Windows\Markup\XmlWrappingReader.cs (1)
123IDictionary<string,string> IXmlNamespaceResolver.GetNamespacesInScope ( XmlNamespaceScope scope ) {
System.IO.Packaging (1)
System\IO\Packaging\XmlWrappingReader.cs (1)
115IDictionary<string, string> IXmlNamespaceResolver.GetNamespacesInScope(XmlNamespaceScope scope)
System.Private.Xml (18)
System\Xml\BinaryXml\XmlBinaryReader.cs (1)
1806System.Collections.Generic.IDictionary<string, string> IXmlNamespaceResolver.GetNamespacesInScope(XmlNamespaceScope scope)
System\Xml\Core\XmlAsyncCheckReader.cs (2)
928IDictionary<string, string> IXmlNamespaceResolver.GetNamespacesInScope(XmlNamespaceScope scope) 990IDictionary<string, string> IXmlNamespaceResolver.GetNamespacesInScope(XmlNamespaceScope scope)
System\Xml\Core\XmlCharCheckingReader.cs (1)
649IDictionary<string, string> IXmlNamespaceResolver.GetNamespacesInScope(XmlNamespaceScope scope)
System\Xml\Core\XmlSubtreeReader.cs (1)
1214IDictionary<string, string> IXmlNamespaceResolver.GetNamespacesInScope(XmlNamespaceScope scope)
System\Xml\Core\XmlTextReader.cs (1)
340IDictionary<string, string> IXmlNamespaceResolver.GetNamespacesInScope(XmlNamespaceScope scope)
System\Xml\Core\XmlTextReaderImpl.cs (1)
1926IDictionary<string, string> IXmlNamespaceResolver.GetNamespacesInScope(XmlNamespaceScope scope)
System\Xml\Core\XmlValidatingReader.cs (1)
266IDictionary<string, string> IXmlNamespaceResolver.GetNamespacesInScope(XmlNamespaceScope scope)
System\Xml\Core\XmlValidatingReaderImpl.cs (1)
798IDictionary<string, string> IXmlNamespaceResolver.GetNamespacesInScope(XmlNamespaceScope scope)
System\Xml\Core\XmlWellFormedWriterHelpers.cs (1)
26IDictionary<string, string> IXmlNamespaceResolver.GetNamespacesInScope(XmlNamespaceScope scope)
System\Xml\Core\XsdValidatingReader.cs (1)
1919IDictionary<string, string> IXmlNamespaceResolver.GetNamespacesInScope(XmlNamespaceScope scope)
System\Xml\Dom\DocumentSchemaValidator.cs (1)
169public IDictionary<string, string> GetNamespacesInScope(XmlNamespaceScope scope)
System\Xml\Dom\DocumentXmlWriter.cs (1)
491IDictionary<string, string> IXmlNamespaceResolver.GetNamespacesInScope(XmlNamespaceScope scope)
System\Xml\Dom\XmlNodeReader.cs (1)
1907IDictionary<string, string> IXmlNamespaceResolver.GetNamespacesInScope(XmlNamespaceScope scope)
System\Xml\Schema\XmlAtomicValue.cs (1)
69public IDictionary<string, string> GetNamespacesInScope(XmlNamespaceScope scope)
System\Xml\XmlNamespacemanager.cs (1)
223public virtual IDictionary<string, string> GetNamespacesInScope(XmlNamespaceScope scope)
System\Xml\XPath\XPathNavigator.cs (1)
469public virtual IDictionary<string, string> GetNamespacesInScope(XmlNamespaceScope scope)
System\Xml\XPath\XPathNavigatorReader.cs (1)
145IDictionary<string, string> IXmlNamespaceResolver.GetNamespacesInScope(XmlNamespaceScope scope)
System.Xaml (1)
src\Microsoft.DotNet.Wpf\src\Shared\System\Windows\Markup\XmlWrappingReader.cs (1)
123IDictionary<string,string> IXmlNamespaceResolver.GetNamespacesInScope ( XmlNamespaceScope scope ) {
15 references to GetNamespacesInScope
Microsoft.Maui.Controls.Build.Tasks (1)
NodeILExtensions.cs (1)
700 foreach (var kvp in node.NamespaceResolver.GetNamespacesInScope(XmlNamespaceScope.ExcludeXml))
PresentationBuildTasks (1)
src\Microsoft.DotNet.Wpf\src\Shared\System\Windows\Markup\XmlWrappingReader.cs (1)
124return (_readerAsResolver is null) ? null : _readerAsResolver.GetNamespacesInScope( scope );
System.IO.Packaging (1)
System\IO\Packaging\XmlWrappingReader.cs (1)
117return _readerAsResolver?.GetNamespacesInScope(scope)!;
System.Private.DataContractSerialization (1)
System\Runtime\Serialization\XmlReaderDelegator.cs (1)
1014return (reader is IXmlNamespaceResolver) ? ((IXmlNamespaceResolver)reader).GetNamespacesInScope(scope) : null;
System.Private.Xml (9)
System\Xml\Core\XmlAsyncCheckReader.cs (2)
930return _readerAsIXmlNamespaceResolver.GetNamespacesInScope(scope); 992return _readerAsIXmlNamespaceResolver.GetNamespacesInScope(scope);
System\Xml\Core\XmlCharCheckingReader.cs (1)
651return readerAsNSResolver.GetNamespacesInScope(scope);
System\Xml\Core\XmlValidatingReaderImpl.cs (1)
816return _coreReaderNSResolver!.GetNamespacesInScope(scope);
System\Xml\Core\XsdValidatingReader.cs (1)
1923return _coreReaderNSResolver.GetNamespacesInScope(scope);
System\Xml\Dom\DocumentSchemaValidator.cs (1)
455IDictionary<string, string> namespaceDecls = NamespaceResolver.GetNamespacesInScope(XmlNamespaceScope.All);
System\Xml\Schema\XmlSchemaValidator.cs (1)
2136IDictionary<string, string> namespaceDecls = _nsResolver.GetNamespacesInScope(XmlNamespaceScope.All);
System\Xml\XPath\XPathNavigator.cs (1)
1883IDictionary<string, string> dictionary = resolver.GetNamespacesInScope(XmlNamespaceScope.All);
System\Xml\Xsl\Xslt\XsltInput.cs (1)
118namespacesInScope = nsResolver.GetNamespacesInScope(XmlNamespaceScope.ExcludeXml);
System.Xaml (2)
src\Microsoft.DotNet.Wpf\src\Shared\System\Windows\Markup\XmlWrappingReader.cs (1)
124return (_readerAsResolver is null) ? null : _readerAsResolver.GetNamespacesInScope( scope );
System\Xaml\InfosetObjects\XamlXmlReader.cs (1)
199IDictionary<string, string> rootNamespaces = myXmlReaderNS.GetNamespacesInScope(XmlNamespaceScope.Local);