XPathNodeIterator.Current.InsertAfter : XPathNodeIterator « System.Xml.XPath « C# / C Sharp by API






XPathNodeIterator.Current.InsertAfter

  

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() {
        XmlDocument doc = new XmlDocument();
        doc.Load("books.xml");
        XPathNavigator nav = doc.CreateNavigator();

        if (nav.CanEdit) {
            XPathNodeIterator iter = nav.Select("/bookstore/book/price");
            while (iter.MoveNext()) {
                iter.Current.InsertAfter("<disc>5</disc>");
            }

        }
        doc.Save("newbooks.xml");
    }
}  

   
    
  








Related examples in the same category

1.XPathNodeIterator.Current.SelectDescendants
2.XPathNodeIterator.MoveNext()