This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 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: 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
}
}