using System;
using Cpp2IlInjected;
namespace System
{
/// Specifies whether relevant and methods insert line breaks in their output.
// Token: 0x020000CD RID: 205
[Token(Token = "0x20000CD")]
[Flags]
public enum Base64FormattingOptions
{
/// Does not insert line breaks after every 76 characters in the string representation.
// Token: 0x040002DB RID: 731
[Token(Token = "0x40002DB")]
None = 0,
/// Inserts line breaks after every 76 characters in the string representation.
// Token: 0x040002DC RID: 732
[Token(Token = "0x40002DC")]
InsertLineBreaks = 1
}
}