The XMLNodeDataset class represents a node in an XML document tree. It is the primary class used to access and manipulate XML data within the .NET Framework.
This class is part of the System.Xml namespace.
Properties
Name (System.String)
The name of the node.
Value (System.Object)
The value of the node.
ChildNodes (System.Collections.IEnumerable)
An enumerable collection of child nodes.
Example
using System.Xml;
// Create an XMLNodeDataset
XmlNodeDataset dataset = new XmlNodeDataset();
// Create a new node
XmlNode node = dataset.CreateNode(XmlNodeType.Element, "MyNode", "MyNamespace");
// Add the node to the dataset
dataset.AddNode(node);
// Now you can access and manipulate the node
Returns
None