May 2010
Intermediate to advanced
1272 pages
61h 18m
English
System.Xml.Linq NamespaceThe 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

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") ...
Read now
Unlock full access