using System; using System.Runtime.InteropServices; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System { /// The exception that is thrown when the file image of a dynamic link library (DLL) or an executable program is invalid. // Token: 0x020000BA RID: 186 [Token(Token = "0x20000BA")] [ComVisible(true)] [Serializable] public class BadImageFormatException : SystemException { /// Initializes a new instance of the class. // Token: 0x06000542 RID: 1346 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000542")] [Address(RVA = "0x26C7B40", Offset = "0x26C6940", VA = "0x1826C7B40")] public BadImageFormatException() { } /// Initializes a new instance of the class with a specified error message. /// The message that describes the error. // Token: 0x06000543 RID: 1347 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000543")] [Address(RVA = "0x26C7C70", Offset = "0x26C6A70", VA = "0x1826C7C70")] public BadImageFormatException(string message) { } /// 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 a null reference, the current exception is raised in a block that handles the inner exception. // Token: 0x06000544 RID: 1348 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000544")] [Address(RVA = "0x26C7B10", Offset = "0x26C6910", VA = "0x1826C7B10")] public BadImageFormatException(string message, Exception inner) { } /// Initializes a new instance of the class with a specified error message and file name. /// A message that describes the error. /// The full name of the file with the invalid image. // Token: 0x06000545 RID: 1349 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000545")] [Address(RVA = "0x26C7AD0", Offset = "0x26C68D0", VA = "0x1826C7AD0")] public BadImageFormatException(string message, string fileName) { } /// Gets the error message and the name of the file that caused this exception. /// A string containing the error message and the name of the file that caused this exception. // Token: 0x1700009A RID: 154 // (get) Token: 0x06000546 RID: 1350 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x1700009A")] public override string Message { [Token(Token = "0x6000546")] [Address(RVA = "0x26C7CA0", Offset = "0x26C6AA0", VA = "0x1826C7CA0", Slot = "5")] get { return null; } } // Token: 0x06000547 RID: 1351 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000547")] [Address(RVA = "0x26C77E0", Offset = "0x26C65E0", VA = "0x1826C77E0")] private void SetMessageField() { } /// Returns the fully qualified name of this exception and possibly the error message, the name of the inner exception, and the stack trace. /// A string containing the fully qualified name of this exception and possibly the error message, the name of the inner exception, and the stack trace. // Token: 0x06000548 RID: 1352 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x6000548")] [Address(RVA = "0x26C7850", Offset = "0x26C6650", VA = "0x1826C7850", Slot = "3")] public override string ToString() { return null; } /// Initializes a new instance of the class with serialized data. /// The that holds the serialized object data about the exception being thrown. /// The that contains contextual information about the source or destination. // Token: 0x06000549 RID: 1353 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000549")] [Address(RVA = "0x26C7BA0", Offset = "0x26C69A0", VA = "0x1826C7BA0")] protected BadImageFormatException(SerializationInfo info, StreamingContext context) { } /// Gets the log file that describes why an assembly load failed. /// A containing errors reported by the assembly cache. // Token: 0x1700009B RID: 155 // (get) Token: 0x0600054A RID: 1354 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x1700009B")] public string FusionLog { [Token(Token = "0x600054A")] [Address(RVA = "0x44EC40", Offset = "0x44DA40", VA = "0x18044EC40")] get { return null; } } /// Sets the object with the file name, assembly cache log, and additional exception information. /// The that holds the serialized object data about the exception being thrown. /// The that contains contextual information about the source or destination. /// The caller does not have the required permission. // Token: 0x0600054B RID: 1355 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600054B")] [Address(RVA = "0x26C76A0", Offset = "0x26C64A0", VA = "0x1826C76A0", Slot = "10")] public override void GetObjectData(SerializationInfo info, StreamingContext context) { } // Token: 0x04000212 RID: 530 [global::Cpp2IlInjected.FieldOffset(Offset = "0x88")] [Token(Token = "0x4000212")] private string _fileName; // Token: 0x04000213 RID: 531 [global::Cpp2IlInjected.FieldOffset(Offset = "0x90")] [Token(Token = "0x4000213")] private string _fusionLog; } }