ValidationType

ValidationType enum

Specifies the type of validation to perform.

enum class ValidationType

Values

NameValueDescription
None0No validation is performed, and no validation errors are thrown. This setting creates an XML 1.0 compliant non-validating parser.
Auto1Validates if DTD or schema information is found.
DTD2Validates according to the DTD.
XDR3Validate according to XML-Data Reduced (XDR) schemas, including inline XDR schemas. XDR schemas are recognized using the x-schema namespace prefix or the XmlValidatingReader::get_Schemas value.
Schema4Validate according to XML Schema definition language (XSD) schemas, including inline XML Schemas. XML Schemas are associated with namespace URIs either by using the schemaLocation attribute or the provided Schemas.

See Also