Implemented interface member:
method
GetNamespacesInScope
System.Xml.IXmlNamespaceResolver.GetNamespacesInScope(System.Xml.XmlNamespaceScope)
1 override of GetNamespacesInScope
System.Xml (1)
System\Xml\Core\XmlTextReaderImplHelpers.cs (1)
161public override IDictionary<string,string> GetNamespacesInScope( XmlNamespaceScope scope ) { return null; }
6 references to GetNamespacesInScope
System.Xml (6)
System\Xml\Core\XmlSubtreeReader.cs (1)
1015return nsManager.GetNamespacesInScope(scope);
System\Xml\Core\XmlTextReaderImpl.cs (1)
1850return namespaceManager.GetNamespacesInScope( scope );
System\Xml\Core\XsdValidatingReader.cs (1)
1500return nsManager.GetNamespacesInScope(scope);
System\Xml\Dom\DocumentSchemaValidator.cs (1)
161IDictionary<string,string> dictionary = nsManager.GetNamespacesInScope(scope);
System\Xml\Dom\DocumentXmlWriter.cs (1)
404return namespaceManager.GetNamespacesInScope(scope);
System\Xml\Schema\XsdValidator.cs (1)
234foreach(string ns in nsManager.GetNamespacesInScope(XmlNamespaceScope.ExcludeXml).Values) {