It would be nice if the errors could show the line numbers and position in the XML.
It can be done replacing the line 405 of Validator.cs (XdmDocument xmlprimeDoc = new XdmDocument(aDoc.CreateReader()) with this one:
XdmDocument xmlprimeDoc = new XdmDocument(aDoc.CreateReader(), XmlSpace.Preserve, true);
Do you think it's a change you could incorporate in your code?
Hello,
It would be nice if the errors could show the line numbers and position in the XML. It can be done replacing the line 405 of Validator.cs (XdmDocument xmlprimeDoc = new XdmDocument(aDoc.CreateReader()) with this one:
XdmDocument xmlprimeDoc = new XdmDocument(aDoc.CreateReader(), XmlSpace.Preserve, true);
Do you think it's a change you could incorporate in your code?