using System;
using Cpp2IlInjected;
namespace System
{
/// Specifies whether relevant and methods insert line breaks in their output.
// Token: 0x020000D4 RID: 212
[Token(Token = "0x20000D4")]
[Flags]
public enum Base64FormattingOptions
{
/// Does not insert line breaks after every 76 characters in the string representation.
// Token: 0x040002E5 RID: 741
[Token(Token = "0x40002E5")]
None = 0,
/// Inserts line breaks after every 76 characters in the string representation.
// Token: 0x040002E6 RID: 742
[Token(Token = "0x40002E6")]
InsertLineBreaks = 1
}
}