Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

24 lines
598 B
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Security.Cryptography
{
/// <summary>Specifies the mode of a cryptographic stream.</summary>
// Token: 0x020003F9 RID: 1017
[Token(Token = "0x20003F9")]
[ComVisible(true)]
[Serializable]
public enum CryptoStreamMode
{
/// <summary>Read access to a cryptographic stream.</summary>
// Token: 0x040013E1 RID: 5089
[Token(Token = "0x40013E1")]
Read,
/// <summary>Write access to a cryptographic stream.</summary>
// Token: 0x040013E2 RID: 5090
[Token(Token = "0x40013E2")]
Write
}
}