using System; using System.Runtime.InteropServices; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System.Security { /// The exception that is thrown when a security error is detected. // Token: 0x020003AA RID: 938 [Token(Token = "0x20003AA")] [ComVisible(true)] [Serializable] public class SecurityException : SystemException { /// Initializes a new instance of the class with default properties. // Token: 0x06002081 RID: 8321 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002081")] [Address(RVA = "0x2C43EC0", Offset = "0x2C42CC0", VA = "0x182C43EC0")] public SecurityException() { } /// Initializes a new instance of the class with a specified error message. /// The error message that explains the reason for the exception. // Token: 0x06002082 RID: 8322 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002082")] [Address(RVA = "0x2C43F30", Offset = "0x2C42D30", VA = "0x182C43F30")] public SecurityException(string message) { } /// 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. /// /// is . // Token: 0x06002083 RID: 8323 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002083")] [Address(RVA = "0x2C43F50", Offset = "0x2C42D50", VA = "0x182C43F50")] protected SecurityException(SerializationInfo info, StreamingContext context) { } /// 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: 0x06002084 RID: 8324 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002084")] [Address(RVA = "0x2C43F10", Offset = "0x2C42D10", VA = "0x182C43F10")] public SecurityException(string message, Exception inner) { } /// Sets the with information about the . /// The that holds the serialized object data about the exception being thrown. /// The that contains contextual information about the source or destination. /// The parameter is . // Token: 0x06002085 RID: 8325 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002085")] [Address(RVA = "0x2C43E00", Offset = "0x2C42C00", VA = "0x182C43E00", Slot = "10")] public override void GetObjectData(SerializationInfo info, StreamingContext context) { } /// Returns a representation of the current . /// A string representation of the current . // Token: 0x06002086 RID: 8326 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x6002086")] [Address(RVA = "0x2C43EB0", Offset = "0x2C42CB0", VA = "0x182C43EB0", Slot = "3")] public override string ToString() { return null; } // Token: 0x0400127B RID: 4731 [global::Cpp2IlInjected.FieldOffset(Offset = "0x88")] [Token(Token = "0x400127B")] private string permissionState; } }