Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

24 lines
655 B
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Security.Cryptography
{
/// <summary>Specifies whether white space should be ignored in the base 64 transformation.</summary>
// Token: 0x020003EF RID: 1007
[Token(Token = "0x20003EF")]
[ComVisible(true)]
[Serializable]
public enum FromBase64TransformMode
{
/// <summary>White space should be ignored.</summary>
// Token: 0x040013B7 RID: 5047
[Token(Token = "0x40013B7")]
IgnoreWhiteSpaces,
/// <summary>White space should not be ignored.</summary>
// Token: 0x040013B8 RID: 5048
[Token(Token = "0x40013B8")]
DoNotIgnoreWhiteSpaces
}
}