Parse Method (String)
Collapse the table of content
Expand the table of content

XDocument.Parse Method (String)

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Creates a new XDocument from a string.

Namespace:  System.Xml.Linq
Assembly:  System.Xml.Linq (in System.Xml.Linq.dll)

public static XDocument Parse(
	string text
)

Parameters

text
Type: System.String
A string that contains XML.

Return Value

Type: System.Xml.Linq.XDocument
An 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.

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.


                StringBuilder output = new StringBuilder();
                string str =
                @"<?xml version=""1.0""?>
            <!-- comment at the root level -->
            <Root>
                <Child>Content</Child>
            </Root>";
                XDocument doc = XDocument.Parse(str);
                output.Append(doc + Environment.NewLine);

                OutputTextBlock.Text = output.ToString();



Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Show:
© 2017 Microsoft