25 lines
783 B
C#
25 lines
783 B
C#
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
|
|
}
|
|
}
|