24 lines
654 B
C#
24 lines
654 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: 0x020003D3 RID: 979
|
|
[Token(Token = "0x20003D3")]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public enum FromBase64TransformMode
|
|
{
|
|
/// <summary>White space should be ignored.</summary>
|
|
// Token: 0x040012F4 RID: 4852
|
|
[Token(Token = "0x40012F4")]
|
|
IgnoreWhiteSpaces,
|
|
/// <summary>White space should not be ignored.</summary>
|
|
// Token: 0x040012F5 RID: 4853
|
|
[Token(Token = "0x40012F5")]
|
|
DoNotIgnoreWhiteSpaces
|
|
}
|
|
}
|