0

I am working on improving user friendliness of Xsd validation error messages, and I need to enumerate all possible constraint facets to be able to further perform search of specific errors within the ValidationEventArgs.

Here is the link for the facets list: https://msdn.microsoft.com/en-us/library/ms256149(v=vs.110).aspx

How can I get that list?

eYe
  • 1,695
  • 2
  • 29
  • 54
  • So, you validate XML documents with C#? Then, please show the code that does that - together with a sample XML document and your XML Schema. Help: http://stackoverflow.com/help/mcve. – Mathias Müller Feb 01 '16 at 16:13

1 Answers1

0

Just copy/paste the list from the normative source, the XSD specification: https://www.w3.org/TR/xmlschema11-2/#rf-facets

dret
  • 531
  • 3
  • 7