scripts
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user