using System; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System.Security.Cryptography { /// Specifies the mode of a cryptographic stream. // Token: 0x020003DD RID: 989 [Token(Token = "0x20003DD")] [ComVisible(true)] [Serializable] public enum CryptoStreamMode { /// Read access to a cryptographic stream. // Token: 0x0400131E RID: 4894 [Token(Token = "0x400131E")] Read, /// Write access to a cryptographic stream. // Token: 0x0400131F RID: 4895 [Token(Token = "0x400131F")] Write } }