using System;
namespace System
{
/// Specifies whether relevant and methods insert line breaks in their output.
/// 1
// Token: 0x02000640 RID: 1600
[Flags]
public enum Base64FormattingOptions
{
/// Inserts line breaks after every 76 characters in the string representation.
// Token: 0x040017C1 RID: 6081
InsertLineBreaks = 1,
/// Does not insert line breaks after every 76 characters in the string representation.
// Token: 0x040017C2 RID: 6082
None = 0
}
}