using System; using System.Runtime.InteropServices; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System.Security.Cryptography { /// The exception that is thrown when an error occurs during a cryptographic operation. // Token: 0x020003D9 RID: 985 [Token(Token = "0x20003D9")] [ComVisible(true)] [Serializable] public class CryptographicException : SystemException { /// Initializes a new instance of the class with default properties. // Token: 0x0600213D RID: 8509 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600213D")] [Address(RVA = "0x298F4F0", Offset = "0x298E2F0", VA = "0x18298F4F0")] public CryptographicException() { } /// Initializes a new instance of the class with a specified error message. /// The error message that explains the reason for the exception. // Token: 0x0600213E RID: 8510 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600213E")] [Address(RVA = "0x298F4C0", Offset = "0x298E2C0", VA = "0x18298F4C0")] public CryptographicException(string message) { } /// Initializes a new instance of the class with a specified error message in the specified format. /// The format used to output the error message. /// The error message that explains the reason for the exception. // Token: 0x0600213F RID: 8511 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600213F")] [Address(RVA = "0x298F580", Offset = "0x298E380", VA = "0x18298F580")] public CryptographicException(string format, string insert) { } /// Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. /// The error message that explains the reason for the exception. /// The exception that is the cause of the current exception. If the parameter is not , the current exception is raised in a block that handles the inner exception. // Token: 0x06002140 RID: 8512 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002140")] [Address(RVA = "0x298F550", Offset = "0x298E350", VA = "0x18298F550")] public CryptographicException(string message, Exception inner) { } /// Initializes a new instance of the class with the specified error code. /// The error code. // Token: 0x06002141 RID: 8513 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002141")] [Address(RVA = "0x298F620", Offset = "0x298E420", VA = "0x18298F620")] public CryptographicException(int hr) { } /// Initializes a new instance of the class with serialized data. /// The object that holds the serialized object data. /// The contextual information about the source or destination. // Token: 0x06002142 RID: 8514 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002142")] [Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")] protected CryptographicException(SerializationInfo info, StreamingContext context) { } // Token: 0x06002143 RID: 8515 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002143")] [Address(RVA = "0x298F460", Offset = "0x298E260", VA = "0x18298F460")] private static void ThrowCryptographicException(int hr) { } // Token: 0x04001308 RID: 4872 [Token(Token = "0x4001308")] private const int FORMAT_MESSAGE_IGNORE_INSERTS = 512; // Token: 0x04001309 RID: 4873 [Token(Token = "0x4001309")] private const int FORMAT_MESSAGE_FROM_SYSTEM = 4096; // Token: 0x0400130A RID: 4874 [Token(Token = "0x400130A")] private const int FORMAT_MESSAGE_ARGUMENT_ARRAY = 8192; } }