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
+20
View File
@@ -0,0 +1,20 @@
using System;
using Cpp2IlInjected;
namespace System.Xml
{
/// <summary>Specifies how the <see cref="T:System.Xml.XmlTextReader" /> or <see cref="T:System.Xml.XmlValidatingReader" /> handle entities.</summary>
// Token: 0x02000038 RID: 56
[Token(Token = "0x2000038")]
public enum EntityHandling
{
/// <summary>Expands all entities and returns the expanded nodes.</summary>
// Token: 0x04000199 RID: 409
[Token(Token = "0x4000199")]
ExpandEntities = 1,
/// <summary>Expands character entities and returns general entities as <see cref="F:System.Xml.XmlNodeType.EntityReference" /> nodes. </summary>
// Token: 0x0400019A RID: 410
[Token(Token = "0x400019A")]
ExpandCharEntities
}
}