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