using System;
using Cpp2IlInjected;
namespace System.Xml
{
/// Specifies the options for processing DTDs. The enumeration is used by the class.
// Token: 0x0200000E RID: 14
[Token(Token = "0x200000E")]
public enum DtdProcessing
{
/// Specifies that when a DTD is encountered, an is thrown with a message that states that DTDs are prohibited. This is the default behavior.
// Token: 0x04000028 RID: 40
[Token(Token = "0x4000028")]
Prohibit,
/// Causes the DOCTYPE element to be ignored. No DTD processing occurs.
// Token: 0x04000029 RID: 41
[Token(Token = "0x4000029")]
Ignore,
/// Used for parsing DTDs.
// Token: 0x0400002A RID: 42
[Token(Token = "0x400002A")]
Parse
}
}