using System; using Cpp2IlInjected; namespace System.Xml { /// Specifies the type of validation to perform. // Token: 0x0200001D RID: 29 [Token(Token = "0x200001D")] public enum ValidationType { /// No validation is performed. This setting creates an XML 1.0 compliant non-validating parser. // Token: 0x04000035 RID: 53 [Token(Token = "0x4000035")] None, /// Validates if DTD or schema information is found. // Token: 0x04000036 RID: 54 [Token(Token = "0x4000036")] [Obsolete] Auto, /// Validates according to the DTD. // Token: 0x04000037 RID: 55 [Token(Token = "0x4000037")] DTD, /// Validate according to XML-Data Reduced (XDR) schemas, including inline XDR schemas. XDR schemas are recognized using the namespace prefix or the property. // Token: 0x04000038 RID: 56 [Token(Token = "0x4000038")] [Obsolete] XDR, /// Validate according to XML Schema definition language (XSD) schemas, including inline XML Schemas. XML Schemas are associated with namespace URIs either by using the attribute or the provided property. // Token: 0x04000039 RID: 57 [Token(Token = "0x4000039")] Schema } }