XmlReader::Create Method (String^)
Creates a new XmlReader instance with specified URI.
Assembly: System.Xml (in System.Xml.dll)
Parameters
- inputUri
-
Type:
System::String^
The URI for the file that contains the XML data. The XmlUrlResolver class is used to convert the path to a canonical data representation.
| Exception | Condition | ||
|---|---|---|---|
| ArgumentNullException | The inputUri value is null. | ||
| SecurityException | The XmlReader does not have sufficient permissions to access the location of the XML data. | ||
| FileNotFoundException | The file identified by the URI does not exist. | ||
| UriFormatException |
The URI format is not correct. |
An XmlReaderSettings object with default settings is used to create the reader. If you wish to specify the features to support on the created reader, use the overload that takes an XmlReaderSettings object as one of its arguments, and pass in an XmlReaderSettings object with the correct settings.
A default XmlUrlResolver with no credentials is used to access any external resources such as a document type definition (DTD), entities, schemas, and so on.
Important |
|---|
Starting with the .NET Framework 4.5.2, no default XmlUrlResolver is provided. If your solution targets the .NET Framework 4.5.2 or later versions, specify an XmlResolver using the XmlReaderSettings::XmlResolver property. |
If the external resource is located on a network resource that requires authentication, specify an XmlResolver with the necessary credentials using the XmlReaderSettings::XmlResolver property.
The created XmlReader object expands entity references and performs XML normalization of new line characters.
Available since 8
.NET Framework
Available since 2.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1

