XPathNodeIterator : XPath « XML « C# / C Sharp






XPathNodeIterator

     

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Xml;
using System.Xml.XPath;

public class MainClass {
    public static void Main() {
        XPathDocument doc = new XPathDocument("books.xml");
        XPathNavigator nav = ((IXPathNavigable)doc).CreateNavigator();
        XPathNodeIterator iter = nav.Select("/bookstore/book");
        while (iter.MoveNext()) {
            XPathNodeIterator newIter = iter.Current.SelectDescendants(XPathNodeType.Element, false);
            while (newIter.MoveNext())
                Console.WriteLine(newIter.Current.Name + ": " + newIter.Current.Value);
        }

        Console.WriteLine("Total Cost = " + nav.Evaluate("sum(/bookstore/book/price)"));
    }

}
           
         
    
    
    
    
  








Related examples in the same category

1.XPathNavigator
2.Select by path
3.Find Elements with an XPath SearchFind Elements with an XPath Search
4.XPath Query Demo
5.Read XML node using the XML path
6.XmlQuery Example
7. XPath Expression Syntax
8.Using XPath to get string value, integer value and boolean value
9.Extensions.XPathSelectElement selects an XElement using a XPath expression
10.Extensions.XPathSelectElements Selects a collection of elements using an XPath expression.
11.Returns the string result from evaluating an xpath expression against the given document and context.
12.Gets the text value from the element located by the given XPath.
13.Returns the inner text of the single node selected from the specified xpath if found; otherwise, null.
14.Get an array of nodes matching an XPath expression
15.Schema Reference Util