How Do I...Read and Write XML?
This sample illustrates how to use the WriteNode method to copy data from an XmlReader or XPathNavigator
object to the XmlWriter instance. This method can be used to quickly copy data from a source object to the
XmlWriter. It copies data from the current position of the XmlReader or XPathNavigator object, including any child nodes.
C# XMLReadWrite.exe
[This sample can be found at D:\inetpub\wwwroot\quickstart.developerfusion.co.uk\QuickStart\howto\samples\Xml\XMLReadWrite\]
The following code loads an XML document into the XmlReader object.
reader = XmlReader.Create(document);
C#
The following code copies everything from the XmlReader object to the XmlWriter object.
writer.WriteNode(reader, true);
C#
Microsoft .NET Framework SDK QuickStart Tutorials Version 2.0
Copyright � 2004 Microsoft Corporation. All rights reserved.
|