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