System.Runtime.Serialization.XmlReaderDelegator.XmlReaderDelegator.IsNamespaceUri C# (CSharp) Метод

IsNamespaceUri() приватный Метод

private IsNamespaceUri ( XmlDictionaryString ns ) : bool
ns System.Xml.XmlDictionaryString
Результат bool
        internal bool IsNamespaceUri(XmlDictionaryString ns)
        {
            if (dictionaryReader == null)
                return ns.Value == reader.NamespaceURI;
            else
                return dictionaryReader.IsNamespaceUri(ns);
        }
XmlReaderDelegator.XmlReaderDelegator