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
@@ -0,0 +1,24 @@
using System;
using Cpp2IlInjected;
namespace System.Xml
{
/// <summary>Specifies how white space is handled.</summary>
// Token: 0x0200005A RID: 90
[Token(Token = "0x200005A")]
public enum WhitespaceHandling
{
/// <summary>Return <see langword="Whitespace" /> and <see langword="SignificantWhitespace" /> nodes. This is the default.</summary>
// Token: 0x040001FC RID: 508
[Token(Token = "0x40001FC")]
All,
/// <summary>Return <see langword="SignificantWhitespace" /> nodes only.</summary>
// Token: 0x040001FD RID: 509
[Token(Token = "0x40001FD")]
Significant,
/// <summary>Return no <see langword="Whitespace" /> and no <see langword="SignificantWhitespace" /> nodes.</summary>
// Token: 0x040001FE RID: 510
[Token(Token = "0x40001FE")]
None
}
}