This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 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
}
}