XPathNavigator.OuterXml gets or sets the markup of the current node and its child nodes.
using System; using System.Linq; using System.Xml; using System.Xml.Linq; using System.Collections; using System.Collections.Generic; using System.Xml.XPath; public class MainClass{ public static void Main(){ XPathDocument document = new XPathDocument("domainBooks.xml"); XPathNavigator navigator = document.CreateNavigator(); navigator.MoveToChild("bookstore", "http://www.domain.com/books"); navigator.MoveToChild("book", "http://www.domain.com/books"); Console.WriteLine(navigator.OuterXml); } }