The System.Xml.Linq Namespace

The System.Xml.Linq namespace exposes objects for creating, reading, and manipulating Xml documents. All objects inherit from System.Xml.Linq.XObject. Table 28.1 summarizes and describes available objects.

Table 28.1 Objects Available in the System.Xml.Linq Namespace

image

You create an Xml document declaring an instance of the XDocument class:

Dim myDocument As New XDocument

When you have the instance you can add all acceptable objects mentioned in Table 28.1. The first required element is the Xml declaration that can be added as follows and that is mandatory:

myDocument.Declaration = New XDeclaration("1.0", "utf-8", "no") ...

Get Visual Basic® 2010 Unleashed now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.