Implemented interface member:
method
GetNamespacesInScope
System.Xml.IXmlNamespaceResolver.GetNamespacesInScope(System.Xml.XmlNamespaceScope)
1 override of GetNamespacesInScope
System.Private.Xml (1)
System\Xml\Core\XmlTextReaderImplHelpers.cs (1)
158public override IDictionary<string, string> GetNamespacesInScope(XmlNamespaceScope scope) { return null!; }
6 references to GetNamespacesInScope
System.Private.Xml (6)
System\Xml\Core\XmlSubtreeReader.cs (1)
1220return _nsManager.GetNamespacesInScope(scope);
System\Xml\Core\XmlTextReaderImpl.cs (1)
1945return _namespaceManager.GetNamespacesInScope(scope);
System\Xml\Core\XsdValidatingReader.cs (1)
1928return _nsManager.GetNamespacesInScope(scope);
System\Xml\Dom\DocumentSchemaValidator.cs (1)
171IDictionary<string, string> dictionary = _nsManager.GetNamespacesInScope(scope);
System\Xml\Dom\DocumentXmlWriter.cs (1)
493return _namespaceManager!.GetNamespacesInScope(scope);
System\Xml\Schema\XsdValidator.cs (1)
268foreach (string ns in _nsManager.GetNamespacesInScope(XmlNamespaceScope.ExcludeXml).Values)