Creates a new XmlReader instance with the specified XmlReader and XmlReaderSettings objects.
Namespace: System.Xml
Assembly: System.Xml (in System.Xml.dll)
Public Shared Function Create ( _ reader As XmlReader, _ settings As XmlReaderSettings _ ) As XmlReader
public static XmlReader Create( XmlReader reader, XmlReaderSettings settings )
Parameters
- reader
- Type: System.Xml.XmlReader
The XmlReader object that you wish to use as the underlying reader.
- settings
- Type: System.Xml.XmlReaderSettings
The XmlReaderSettings object used to configure the new XmlReader instance.
The conformance level of the XmlReaderSettings object must either match the conformance level of the underlying reader, or it must be set to Auto.
Return Value
Type: System.Xml.XmlReaderAn XmlReader object that is wrapped around the specified XmlReader object.
| Exception | Condition |
|---|---|
| NullReferenceException |
The reader value is null. |
| InvalidOperationException |
If the XmlReaderSettings object specifies a conformance level that is not consistent with conformance level of the underlying reader. -or- |
This method allows you add additional features to an underlying XmlReader object. The underlying XmlReader object can be another XmlReader object created by the Create method, or an XmlReader object created using one of the concrete XmlReader implementations.
The created XmlReader object expands entity references and performs XML normalization of new line characters.
Platform Notes
Silverlight for Windows Phone
Silverlight
Supported in: 5, 4, 3Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0XNA Framework
Supported in: Xbox 360, Windows Phone OS 7.0For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.