views:

41

answers:

1

In C#, how can I get a list of all XSD schemas referenced in an XML file, including those referenced via xsi:noNamespaceSchemaLocation?

+1  A: 

You need to write a XmlUrlResolver and then create a list of the XSD while loading the document.

Priyank Bolia