using System;
using Cpp2IlInjected;
namespace System.Xml
{
/// Specifies the options for processing DTDs. The enumeration is used by the class.
// Token: 0x02000037 RID: 55
[Token(Token = "0x2000037")]
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: 0x04000195 RID: 405
[Token(Token = "0x4000195")]
Prohibit,
/// Causes the DOCTYPE element to be ignored. No DTD processing occurs.
// Token: 0x04000196 RID: 406
[Token(Token = "0x4000196")]
Ignore,
/// Used for parsing DTDs.
// Token: 0x04000197 RID: 407
[Token(Token = "0x4000197")]
Parse
}
}