22 lines
755 B
C#
22 lines
755 B
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System
|
|
{
|
|
/// <summary>Specifies whether relevant <see cref="Overload:System.Convert.ToBase64CharArray" /> and <see cref="Overload:System.Convert.ToBase64String" /> methods insert line breaks in their output.</summary>
|
|
// Token: 0x020000D4 RID: 212
|
|
[Token(Token = "0x20000D4")]
|
|
[Flags]
|
|
public enum Base64FormattingOptions
|
|
{
|
|
/// <summary>Does not insert line breaks after every 76 characters in the string representation.</summary>
|
|
// Token: 0x040002E5 RID: 741
|
|
[Token(Token = "0x40002E5")]
|
|
None = 0,
|
|
/// <summary>Inserts line breaks after every 76 characters in the string representation.</summary>
|
|
// Token: 0x040002E6 RID: 742
|
|
[Token(Token = "0x40002E6")]
|
|
InsertLineBreaks = 1
|
|
}
|
|
}
|