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

20 lines
541 B
C#

using System;
using System.Runtime.InteropServices;
namespace System.Security.Cryptography
{
/// <summary>Specifies whether white space should be ignored in the base 64 transformation.</summary>
// Token: 0x020004FF RID: 1279
[ComVisible(true)]
[Serializable]
public enum FromBase64TransformMode
{
/// <summary>White space should be ignored.</summary>
// Token: 0x04001349 RID: 4937
IgnoreWhiteSpaces,
/// <summary>White space should not be ignored.</summary>
// Token: 0x0400134A RID: 4938
DoNotIgnoreWhiteSpaces
}
}