You can configure an XML data driver using an XML helper.
The following example shows how to create and configure an XML driver using an XML helper.
To configure an XML data driver using an XML helper:
// configuration setting
IlrXmlHelper.Config config = new IlrXmlHelper.Config ();
config.schemaParser = …;
…
try { IlrXmlDataDriver driver = IlrXmlHelper.createDataDriver ( config );
}
catch ( IlrXmlErrorException e ) {
// some parsing error
}
See IlrXmlDataDriver and IlrXmlHelper.