XDocument.Parse Method (String)
Creates a new XDocument from a string.
Assembly: System.Xml.Linq (in System.Xml.Linq.dll)
Parameters
- text
- Type: System.String
A string that contains XML.
Return Value
Type: System.Xml.Linq.XDocumentAn XDocument populated from the string that contains XML.
This method does not preserve white space. If you want to preserve white space in the XML tree, use the overload of Parse that takes LoadOptions as a parameter.
For more information, see Preserving White Space while Loading or Parsing XML and Preserving White Space While Serializing.
LINQ to XML's loading functionality is built upon XmlReader. Therefore, you might catch any exceptions that are thrown by the XmlReader.Create overload methods and the XmlReader methods that read and parse the document.
The following example creates a string that contains XML. It then parses the string into an XDocument.
string str = @"<?xml version=""1.0""?> <!-- comment at the root level --> <Root> <Child>Content</Child> </Root>"; XDocument doc = XDocument.Parse(str); Console.WriteLine(doc);
This example produces the following output:
<!-- comment at the root level --> <Root> <Child>Content</Child> </Root>
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.