XmlReaderCreate Method (String, XmlReaderSettings) |
Creates a new instance with the specified URI and System.Xml.XmlReaderSettings.
Namespace: System.XmlAssembly: CSharpXamlForHtml5.System.Xml.dll (in CSharpXamlForHtml5.System.Xml.dll.dll) Version: 1.0.0.0
Syntax public static XmlReader Create(
string inputUri,
XmlReaderSettings settings
)
Parameters
- inputUri
- Type: SystemString
The URI for the file containing the XML data. The System.Xml.XmlResolver
object on the System.Xml.XmlReaderSettings object is used to convert the
path to a canonical data representation. If System.Xml.XmlReaderSettings.XmlResolver
is null, a new System.Xml.XmlUrlResolver object is used.
- settings
- Type: System.XmlXmlReaderSettings
The System.Xml.XmlReaderSettings object used to configure the new System.Xml.XmlReader
instance. This value can be null.
Return Value
Type:
XmlReaderAn System.Xml.XmlReader object to read XML data.
See Also