This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 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
}
}