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