25 lines
714 B
C#
25 lines
714 B
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Xml
|
|
{
|
|
/// <summary>Specifies the current <see langword="xml:space" /> scope.</summary>
|
|
// Token: 0x02000022 RID: 34
|
|
[Token(Token = "0x2000022")]
|
|
public enum XmlSpace
|
|
{
|
|
/// <summary>No <see langword="xml:space" /> scope.</summary>
|
|
// Token: 0x04000060 RID: 96
|
|
[Token(Token = "0x4000060")]
|
|
None,
|
|
/// <summary>The <see langword="xml:space" /> scope equals <see langword="default" />.</summary>
|
|
// Token: 0x04000061 RID: 97
|
|
[Token(Token = "0x4000061")]
|
|
Default,
|
|
/// <summary>The <see langword="xml:space" /> scope equals <see langword="preserve" />.</summary>
|
|
// Token: 0x04000062 RID: 98
|
|
[Token(Token = "0x4000062")]
|
|
Preserve
|
|
}
|
|
}
|