XDocument « XML LINQ « VB.Net






1.Add element to XDocument
2.Create new Xml document with XDocument and XElement
3.Create an in-memory XML document with XDocument
4.Create XDocument from XmlReader
5.Get Xml encoding from XDocument
6.Load the Employees.xml and store the contents into an XDocument object
7.Get version from XDocument
8.Reading Rss feed with XDocument
9.Display the XML files declaration information with an XDocument object








10.Display the name of the root element in the loaded XML tree
11.Is Xml standalone
12.LocalName returns the name of the element as a string
13.Name property returns the XName class
14.XDocument Class represents an XML document.
15.Create XDocument class with the specified content.
16.Create XDocument class.
17.Create XDocument with hard code string
18.Create XDocument class with the specified XDeclaration and content.
19.XDocument.Declaration Property gets or sets the XML declaration for this document.
20.XDocument.DocumentType Property gets the Document Type Definition (DTD) for this document.
21.XDocument.Load (String) creates a new XDocument from a file.
22.XDocument.Load(String, LoadOptions) creates a new XDocument from a file, optionally preserving white space
23.XDocument.Load (TextReader) creates a new XDocument from a TextReader.
24.XDocument.Load (TextReader, LoadOptions)
25.XDocument.NodeType Property gets the node type for this node.
26.XDocument.Parse creates a new XDocument from a string.
27.XDocument.Parse Method creates a new XDocument from a string, optionally preserving white space
28.XDocument.Root Property gets the root element of the XML Tree for this document.
29.XDocument.Save (String) serialize this XDocument to a file, overwriting an existing file, if it exists.
30.XDocument.Save serialize this XDocument to a file, optionally disabling formatting.
31.XDocument.Save (TextWriter) serialize this XDocument to a TextWriter.
32.XDocument.Save (TextWriter, SaveOptions) serialize this XDocument to a TextWriter, optionally disabling formatting.
33.XObject.Document Property gets the XDocument for this XObject.
34.Extensions.XPathEvaluate