Files
2026-06-04 11:42:34 +02:00

19 lines
685 B
C#

using System;
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>
/// <filterpriority>1</filterpriority>
// Token: 0x02000640 RID: 1600
[Flags]
public enum Base64FormattingOptions
{
/// <summary>Inserts line breaks after every 76 characters in the string representation.</summary>
// Token: 0x040017C1 RID: 6081
InsertLineBreaks = 1,
/// <summary>Does not insert line breaks after every 76 characters in the string representation.</summary>
// Token: 0x040017C2 RID: 6082
None = 0
}
}