System.Runtime.Serialization.XmlReaderDelegator.XmlReaderDelegator.GetNamespacesInScope C# (CSharp) 메소드

GetNamespacesInScope() 개인적인 메소드

private GetNamespacesInScope ( XmlNamespaceScope scope ) : string>.IDictionary
scope XmlNamespaceScope
리턴 string>.IDictionary
        internal IDictionary<string, string> GetNamespacesInScope(XmlNamespaceScope scope)
        {
            return (reader is IXmlNamespaceResolver) ? ((IXmlNamespaceResolver)reader).GetNamespacesInScope(scope) : null;
        }
XmlReaderDelegator.XmlReaderDelegator