XElement.Load Method (TextReader)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Loads an XElement from a TextReader.
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 XML into the XML tree. It discards all insignificant white space in the file. If you want to control load options, use the Load overload that takes LoadOptions as a parameter.
Show: