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