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
+24
View File
@@ -0,0 +1,24 @@
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
}
}