I'am validate XML against XSD schema by XDocument.Validate()/XElement.Validate() method (or by XmlDocument.Validate()) and have the following error messages:
The 'gender' attribute is invalid - The value 'X' is invalid according to its datatype 'String' - The Enumeration constraint failed.
The 'GTX' element is invalid - The value '' is invalid according to its datatype 'requiredString' - The actual length is less than the MinLength value.
The 'amount' attribute is invalid - The value '999' is invalid according to its datatype 'requiredId' - The actual value is less than the MaxInclusive value.
How I can get the (Max/Min)Inclusive/Exclusive/Length, (Min/Max)Occurs, list of possible values for node/attribute from XSD for the current issue?
For example with a list of possible elements (tags) all ok in error message:
The element 'foo' has invalid child element 'baz'. List of possible elements expected: 'bar, par'
I've read about XmlSchemaValidator object, but I don't want to deserialize XML in any model because the structure can be changed and for XSD too.
Can someone help me with this? Or maybe I can use XmlSchemaValidator somehow differently? Maybe somebody can give a link to example how validate XML w/o binding to the document structure?