Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

marked as duplicate by skolima, David Basarab, stusmith, Explosion Pills, the Tin Man Dec 3 '12 at 13:45

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.

1 Answer

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:

XmlReaderSettings settings = new XmlReaderSettings();
settings.Schemas.Add(null, xsdFilePath);
settings.ValidationType = ValidationType.Schema;
settings.ValidationEventHandler += new System.Xml.Schema.ValidationEventHandler(settings_ValidationEventHandler);

var reader = XmlReader.Create(source, settings);

You will now get information on validation errors in settings_ValidationEventHandler and the document load will be aborted if required.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.