System.Xml.XPath.XPathNavigator.SelectDescendants C# (CSharp) Method

SelectDescendants() public method

public SelectDescendants ( XPathNodeType type, bool matchSelf ) : XPathNodeIterator
type XPathNodeType
matchSelf bool
return XPathNodeIterator
        public virtual XPathNodeIterator SelectDescendants(XPathNodeType type, bool matchSelf)
        {
            return new XPathDescendantIterator(this.Clone(), type, matchSelf);
        }

Same methods

XPathNavigator::SelectDescendants ( string name, string namespaceURI, bool matchSelf ) : XPathNodeIterator

Usage Example

Example #1
0
        private IWriter[] GetItems(XPathNavigator node)
        {
            var dlvs = node.SelectDescendants("DLV", node.NamespaceURI, true);
            var mappedDlvs = _dlvReader.Read(dlvs);

            return mappedDlvs.ToArray();
        }
All Usage Examples Of System.Xml.XPath.XPathNavigator::SelectDescendants