This documentation is archived and is not being maintained.
XmlReader::Create Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Creates a new XmlReader instance.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
|
| Name | Description |
|---|
|
Create(Stream)
|
Creates a new XmlReader instance using the specified stream.
|
|
Create(String)
|
Creates a new XmlReader instance with specified URI.
|
|
Create(TextReader)
|
Creates a new XmlReader instance with the specified TextReader.
|
|
Create(Stream, XmlReaderSettings)
|
Creates a new XmlReader instance with the specified stream and XmlReaderSettings object.
|
|
Create(String, XmlReaderSettings)
|
Creates a new instance with the specified URI and XmlReaderSettings.
|
|
Create(TextReader, XmlReaderSettings)
|
Creates a new XmlReader instance using the specified TextReader and XmlReaderSettings objects.
|
|
Create(XmlReader, XmlReaderSettings)
|
Creates a new XmlReader instance with the specified XmlReader and XmlReaderSettings objects.
|
|
Create(Stream, XmlReaderSettings, String)
|
Creates a new XmlReader instance using the specified stream, base URI, and XmlReaderSettings object.
|
|
Create(Stream, XmlReaderSettings, XmlParserContext)
|
Creates a new XmlReader instance using the specified stream, XmlReaderSettings, and XmlParserContext objects.
|
|
Create(String, XmlReaderSettings, XmlParserContext)
|
Creates a new XmlReader instance using the specified URI, XmlReaderSettings, and XmlParserContext objects.
|
|
Create(TextReader, XmlReaderSettings, String)
|
Creates a new XmlReader instance using the specified TextReader, XmlReaderSettings, and base URI.
|
|
Create(TextReader, XmlReaderSettings, XmlParserContext)
|
Creates a new XmlReader instance using the specified TextReader, XmlReaderSettings, and XmlParserContext objects.
|
Top