XElement.Load Method (Stream, LoadOptions)
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Creates a new XElement instance using the specified stream, optionally preserving white space, setting the base URI, and retaining line information.
Namespace: System.Xml.Linq
Assembly: System.Xml.Linq (in System.Xml.Linq.dll)
Syntax
'Declaration
Public Shared Function Load ( _
stream As Stream, _
options As LoadOptions _
) As XElement
public static XElement Load(
Stream stream,
LoadOptions options
)
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.XElement
An XElement object used to read the data contained in the stream.
Remarks
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:
Create an XmlReader by calling one of the Create overloads that take XmlReaderSettings as a parameter.
Pass the XmlReader to one of the XElement's Load overloads that takes XmlReader as a parameter.
For code examples, see:
How to: Load an XML File from an Arbitrary URI Location with LINQ to XML
How to: Save to and Load from Isolated Storage with LINQ to XML
How to: Load a File from a XAP Package Using XmlXapResolver
You can find more examples under Processing XML Data with LINQ to XML (Silverlight).
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0
XNA Framework
Supported in: Xbox 360, Windows Phone OS 7.0
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
See Also