This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
using System;
using Cpp2IlInjected;
namespace System.Xml
{
/// <summary>Specifies the options for processing DTDs. The <see cref="T:System.Xml.DtdProcessing" /> enumeration is used by the <see cref="T:System.Xml.XmlReaderSettings" /> class.</summary>
// Token: 0x02000037 RID: 55
[Token(Token = "0x2000037")]
public enum DtdProcessing
{
/// <summary>Specifies that when a DTD is encountered, an <see cref="T:System.Xml.XmlException" /> is thrown with a message that states that DTDs are prohibited. This is the default behavior.</summary>
// Token: 0x04000195 RID: 405
[Token(Token = "0x4000195")]
Prohibit,
/// <summary>Causes the DOCTYPE element to be ignored. No DTD processing occurs. </summary>
// Token: 0x04000196 RID: 406
[Token(Token = "0x4000196")]
Ignore,
/// <summary>Used for parsing DTDs.</summary>
// Token: 0x04000197 RID: 407
[Token(Token = "0x4000197")]
Parse
}
}