using System;
using Cpp2IlInjected;
namespace System.Xml
{
/// Specifies how to handle line breaks.
// Token: 0x0200004C RID: 76
[Token(Token = "0x200004C")]
public enum NewLineHandling
{
/// New line characters are replaced to match the character specified in the property.
// Token: 0x040001BB RID: 443
[Token(Token = "0x40001BB")]
Replace,
/// New line characters are entitized. This setting preserves all characters when the output is read by a normalizing .
// Token: 0x040001BC RID: 444
[Token(Token = "0x40001BC")]
Entitize,
/// The new line characters are unchanged. The output is the same as the input.
// Token: 0x040001BD RID: 445
[Token(Token = "0x40001BD")]
None
}
}