tags:

views:

104

answers:

1

C# VB.NET 2.0

I have XML string object being sent to me. I have the location of the schemas (5 of them) that I need to validate this XML against.

Most of the examples I see are .net 3.5, but not many on 2.0.

The XML String does NOT Declare what schemas to use, it only has the namespaces on a good handful of elements.

Thanks.

+1  A: 

Have a look at XmlSchemaSet.

Pavel Minaev