24 lines
598 B
C#
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
|
|
}
|
|
}
|