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 how white space is handled.</summary>
// Token: 0x0200001E RID: 30
[Token(Token = "0x200001E")]
public enum WhitespaceHandling
{
/// <summary>Return <see langword="Whitespace" /> and <see langword="SignificantWhitespace" /> nodes. This is the default.</summary>
// Token: 0x0400003B RID: 59
[Token(Token = "0x400003B")]
All,
/// <summary>Return <see langword="SignificantWhitespace" /> nodes only.</summary>
// Token: 0x0400003C RID: 60
[Token(Token = "0x400003C")]
Significant,
/// <summary>Return no <see langword="Whitespace" /> and no <see langword="SignificantWhitespace" /> nodes.</summary>
// Token: 0x0400003D RID: 61
[Token(Token = "0x400003D")]
None
}
}