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