System.Xml.DocumentXPathNavigator.IsDescendant C# (CSharp) Méthode

IsDescendant() public méthode

public IsDescendant ( XPathNavigator other ) : bool
other System.Xml.XPath.XPathNavigator
Résultat bool
        public override bool IsDescendant(XPathNavigator other) {
            DocumentXPathNavigator that = other as DocumentXPathNavigator;
            if (that != null) {
                return IsDescendant(this.source, that.source); 
            }
            return false;
        }

Same methods

DocumentXPathNavigator::IsDescendant ( XmlNode top, XmlNode bottom ) : bool