21 implementations of GetNamespacesInScope
PresentationBuildTasks (1)
Base\System\Windows\Markup\XmlWrappingReader.cs (1)
139IDictionary<string,string> IXmlNamespaceResolver.GetNamespacesInScope ( XmlNamespaceScope scope ) {
System.Activities (1)
System\Activities\Debugger\XmlWrappingReader.cs (1)
268IDictionary<string, string> IXmlNamespaceResolver.GetNamespacesInScope(XmlNamespaceScope scope)
System.Xml (18)
System\Xml\BinaryXml\XmlBinaryReader.cs (1)
1596System.Collections.Generic.IDictionary<string, string> IXmlNamespaceResolver.GetNamespacesInScope(XmlNamespaceScope scope) {
System\Xml\Core\XmlAsyncCheckReader.cs (2)
793IDictionary<string, string> IXmlNamespaceResolver.GetNamespacesInScope(XmlNamespaceScope scope) 850IDictionary<string, string> IXmlNamespaceResolver.GetNamespacesInScope(XmlNamespaceScope scope) {
System\Xml\Core\XmlCharCheckingReader.cs (1)
581IDictionary<string,string> IXmlNamespaceResolver.GetNamespacesInScope( XmlNamespaceScope scope ) {
System\Xml\Core\XmlSubtreeReader.cs (1)
1011IDictionary<string,string> IXmlNamespaceResolver.GetNamespacesInScope( XmlNamespaceScope scope ) {
System\Xml\Core\XmlTextReader.cs (1)
295IDictionary<string,string> IXmlNamespaceResolver.GetNamespacesInScope( XmlNamespaceScope scope ) {
System\Xml\Core\XmlTextReaderImpl.cs (1)
1836IDictionary<string,string> IXmlNamespaceResolver.GetNamespacesInScope( XmlNamespaceScope scope ) {
System\Xml\Core\XmlValidatingReader.cs (1)
228IDictionary<string,string> IXmlNamespaceResolver.GetNamespacesInScope( XmlNamespaceScope scope ) {
System\Xml\Core\XmlValidatingReaderImpl.cs (1)
676IDictionary<string,string> IXmlNamespaceResolver.GetNamespacesInScope( XmlNamespaceScope scope ) {
System\Xml\Core\XmlWellFormedWriterHelpers.cs (1)
28IDictionary<string, string> IXmlNamespaceResolver.GetNamespacesInScope(XmlNamespaceScope scope) {
System\Xml\Core\XsdValidatingReader.cs (1)
1495IDictionary<string, string> IXmlNamespaceResolver.GetNamespacesInScope(XmlNamespaceScope scope) {
System\Xml\Dom\DocumentSchemaValidator.cs (1)
160public IDictionary<string,string> GetNamespacesInScope(XmlNamespaceScope scope) {
System\Xml\Dom\DocumentXmlWriter.cs (1)
403IDictionary<string,string> IXmlNamespaceResolver.GetNamespacesInScope(XmlNamespaceScope scope) {
System\Xml\Dom\XmlNodeReader.cs (1)
1615IDictionary<string,string> IXmlNamespaceResolver.GetNamespacesInScope( XmlNamespaceScope scope ) {
System\Xml\Schema\XmlAtomicValue.cs (1)
58public IDictionary<string, string> GetNamespacesInScope(XmlNamespaceScope scope) {
System\Xml\XmlNamespacemanager.cs (1)
208public virtual IDictionary<string,string> GetNamespacesInScope( XmlNamespaceScope scope ) {
System\Xml\XPath\XPathNavigator.cs (1)
422public virtual IDictionary<string,string> GetNamespacesInScope(XmlNamespaceScope scope) {
System\Xml\XPath\XPathNavigatorReader.cs (1)
136IDictionary<string,string> IXmlNamespaceResolver.GetNamespacesInScope(XmlNamespaceScope scope) {
WindowsBase (1)
Base\System\Windows\Markup\XmlWrappingReader.cs (1)
139IDictionary<string,string> IXmlNamespaceResolver.GetNamespacesInScope ( XmlNamespaceScope scope ) {
14 references to GetNamespacesInScope
PresentationBuildTasks (1)
Base\System\Windows\Markup\XmlWrappingReader.cs (1)
140return (_readerAsResolver == null) ? null : _readerAsResolver.GetNamespacesInScope( scope );
System.Activities (1)
System\Activities\Debugger\XmlWrappingReader.cs (1)
270return (this.baseReaderAsNamespaceResolver == null) ? null : this.baseReaderAsNamespaceResolver.GetNamespacesInScope(scope);
System.Data.SqlXml (1)
System\Xml\Xsl\Xslt\XsltInput.cs (1)
112namespacesInScope = nsResolver.GetNamespacesInScope(XmlNamespaceScope.ExcludeXml);
System.Runtime.Serialization (1)
System\Runtime\Serialization\XmlReaderDelegator.cs (1)
1059return (reader is IXmlNamespaceResolver) ? ((IXmlNamespaceResolver)reader).GetNamespacesInScope(scope) : null;
System.Xml (9)
System\Xml\BinaryXml\XmlBinaryReader.cs (1)
1599return resolver.GetNamespacesInScope(scope);
System\Xml\Core\XmlAsyncCheckReader.cs (2)
795return readerAsIXmlNamespaceResolver.GetNamespacesInScope(scope); 851return readerAsIXmlNamespaceResolver.GetNamespacesInScope(scope);
System\Xml\Core\XmlCharCheckingReader.cs (1)
582return readerAsNSResolver.GetNamespacesInScope( scope );
System\Xml\Core\XmlValidatingReaderImpl.cs (1)
690return coreReaderNSResolver.GetNamespacesInScope( scope );
System\Xml\Core\XsdValidatingReader.cs (1)
1497return coreReaderNSResolver.GetNamespacesInScope(scope);
System\Xml\Dom\DocumentSchemaValidator.cs (1)
417IDictionary<string,string> namespaceDecls = NamespaceResolver.GetNamespacesInScope(XmlNamespaceScope.All);
System\Xml\Schema\XmlSchemaValidator.cs (1)
1791IDictionary<string,string> namespaceDecls = nsResolver.GetNamespacesInScope(XmlNamespaceScope.All);
System\Xml\XPath\XPathNavigator.cs (1)
1655IDictionary<string,string> dictionary = resolver.GetNamespacesInScope( XmlNamespaceScope.All );
WindowsBase (1)
Base\System\Windows\Markup\XmlWrappingReader.cs (1)
140return (_readerAsResolver == null) ? null : _readerAsResolver.GetNamespacesInScope( scope );