XElement.Load Method (TextReader)
Loads an XElement from a TextReader.
Namespace: System.Xml.Linq
Assembly: System.Xml.Linq (in System.Xml.Linq.dll)
Parameters
- textReader
- Type: System.IO.TextReader
A TextReader that will be read for the XElement content.
Return Value
Type: System.Xml.Linq.XElementAn XElement that contains the XML that was read from the specified TextReader.
This method reads the raw XML into the XML tree. It discards all insignificant white space in the file.
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 loads an element from a StringReader.
TextReader sr = new StringReader("<Root><Child/></Root>"); XElement xmlTree = XElement.Load(sr); sr.Close(); Console.WriteLine(xmlTree);
This example produces the following output:
<Root> <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.