XmlNode Class Considerations

In general, the XmlNode Class methods and properties can be broken up into the following categories:

Category Description

Add

The Addxxx methods add an entity of the specified type to the end of the list of child nodes, and returns a reference to the newly created node.

Insert

The Insertxxx methods insert an entity of the specified type at the specific location and returns a reference to the newly created node.

Get

The Getxxx methods return a reference to the specified entity. The Getxxx methods may return a single reference or an array of references.

Other

The other methods enable you to find a particular entity in an XmlDoc (FindNode), copy data from one node into another, and remove nodes.