This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,18 @@
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
}
}