25 lines
718 B
C#
25 lines
718 B
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Xml
|
|
{
|
|
/// <summary>Specifies the current <see langword="xml:space" /> scope.</summary>
|
|
// Token: 0x0200006B RID: 107
|
|
[Token(Token = "0x200006B")]
|
|
public enum XmlSpace
|
|
{
|
|
/// <summary>No <see langword="xml:space" /> scope.</summary>
|
|
// Token: 0x0400027E RID: 638
|
|
[Token(Token = "0x400027E")]
|
|
None,
|
|
/// <summary>The <see langword="xml:space" /> scope equals <see langword="default" />.</summary>
|
|
// Token: 0x0400027F RID: 639
|
|
[Token(Token = "0x400027F")]
|
|
Default,
|
|
/// <summary>The <see langword="xml:space" /> scope equals <see langword="preserve" />.</summary>
|
|
// Token: 0x04000280 RID: 640
|
|
[Token(Token = "0x4000280")]
|
|
Preserve
|
|
}
|
|
}
|