Files
Apr2020-Cpp2Il-Dump/System.Xml/EntityHandling.cs
T
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

21 lines
704 B
C#

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: 0x0200000F RID: 15
[Token(Token = "0x200000F")]
public enum EntityHandling
{
/// <summary>Expands all entities and returns the expanded nodes.</summary>
// Token: 0x0400002C RID: 44
[Token(Token = "0x400002C")]
ExpandEntities = 1,
/// <summary>Expands character entities and returns general entities as <see cref="F:System.Xml.XmlNodeType.EntityReference" /> nodes. </summary>
// Token: 0x0400002D RID: 45
[Token(Token = "0x400002D")]
ExpandCharEntities
}
}