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
+24
View File
@@ -0,0 +1,24 @@
using System;
using Cpp2IlInjected;
namespace System.Xml
{
/// <summary>Specifies how to handle line breaks.</summary>
// Token: 0x0200004C RID: 76
[Token(Token = "0x200004C")]
public enum NewLineHandling
{
/// <summary>New line characters are replaced to match the character specified in the <see cref="P:System.Xml.XmlWriterSettings.NewLineChars" /> property.</summary>
// Token: 0x040001BB RID: 443
[Token(Token = "0x40001BB")]
Replace,
/// <summary>New line characters are entitized. This setting preserves all characters when the output is read by a normalizing <see cref="T:System.Xml.XmlReader" />.</summary>
// Token: 0x040001BC RID: 444
[Token(Token = "0x40001BC")]
Entitize,
/// <summary>The new line characters are unchanged. The output is the same as the input.</summary>
// Token: 0x040001BD RID: 445
[Token(Token = "0x40001BD")]
None
}
}