XDocument.Load Method (Stream, LoadOptions)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Creates a new XDocument instance using the specified stream, optionally preserving white space, setting the base URI, and retaining line information.
Assembly: System.Xml.Linq (in System.Xml.Linq.dll)
Parameters
- stream
- Type: System.IO.Stream
The stream containing the XML data.
- options
- Type: System.Xml.Linq.LoadOptions
A LoadOptions that specifies whether to load base URI and line information.
Return Value
Type: System.Xml.Linq.XDocumentAn XDocument object used to read the data contained in the stream.
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.
If you have to modify XmlReaderSettings, following these steps: