24 lines
655 B
C#
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
|
|
}
|
|
}
|