Possible Duplicate:
Xml validation using XSD schema
I have generated some XML using some C#. I need to see if that XML validates against an XSD file. Is there a way to do this in C#? If so, how do I do this?
I have generated some XML using some C#. I need to see if that XML validates against an XSD file. Is there a way to do this in C#? If so, how do I do this? |
||||
|
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
See this question: Xml validation using XSD schema It shows that all you need to do is set the right option when creating your XmlReader:
You will now get information on validation errors in |
|||
|
|