XDocument.Load 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 file located in the application's XAP package.
Assembly: System.Xml.Linq (in System.Xml.Linq.dll)
Parameters
- uri
- Type: System.String
A URI string that references the file to be loaded into a new XDocument. This file is located in the application's XAP package.
Return Value
Type: System.Xml.Linq.XDocumentAn XDocument that contains the contents of the specified file.
Use Parse to create an XDocument from a string that contains XML.
If you want to control load options, use the Load overload 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.
If you have to modify XmlReaderSettings, following these steps: