21 lines
706 B
C#
21 lines
706 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: 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
|
|
}
|
|
}
|