shnar
shnar

Reputation: 333

Validate an XmlDocument using an XSD String in C#?

I have an XmlDocument in C# that I need to validate against an Xml Schema. I've seen a lot of articles on how to do this using XmlDocument.Schemas.Add(namspace, xsdfilename), however my XSD is not saved on the disk, it's in memory (loaded in from a database). Can anyone give me pointers on how to validate an XmlDocument with a XSD string?

Upvotes: 5

Views: 2460

Answers (1)

JamieSee
JamieSee

Reputation: 13030

using (StringReader stringReader = new StringReader(xsdString))
using (XmlTextReader xmlReader = new XmlTextReader(stringReader))
{
    xmlDocument.Schemas.Add(null, xmlReader);
}

Upvotes: 5

Related Questions