This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 additions and 0 deletions
@@ -0,0 +1,23 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Security.Cryptography
{
/// <summary>Specifies the mode of a cryptographic stream.</summary>
// Token: 0x020003DD RID: 989
[Token(Token = "0x20003DD")]
[ComVisible(true)]
[Serializable]
public enum CryptoStreamMode
{
/// <summary>Read access to a cryptographic stream.</summary>
// Token: 0x0400131E RID: 4894
[Token(Token = "0x400131E")]
Read,
/// <summary>Write access to a cryptographic stream.</summary>
// Token: 0x0400131F RID: 4895
[Token(Token = "0x400131F")]
Write
}
}