using System; using System.Runtime.InteropServices; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System.IO { /// The exception that is thrown when a managed assembly is found but cannot be loaded. // Token: 0x0200028E RID: 654 [Token(Token = "0x200028E")] [ComVisible(true)] [Serializable] public class FileLoadException : IOException { /// Initializes a new instance of the class, setting the property of the new instance to a system-supplied message that describes the error, such as "Could not load the specified file." This message takes into account the current system culture. // Token: 0x060017C0 RID: 6080 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60017C0")] [Address(RVA = "0x2BACC70", Offset = "0x2BABC70", VA = "0x182BACC70")] public FileLoadException() { } /// Initializes a new instance of the class with the specified error message. /// A that describes the error. The content of is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture. // Token: 0x060017C1 RID: 6081 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60017C1")] [Address(RVA = "0x2BACC40", Offset = "0x2BABC40", VA = "0x182BACC40")] public FileLoadException(string message) { } /// 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: 0x170002CB RID: 715 // (get) Token: 0x060017C2 RID: 6082 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x170002CB")] public override string Message { [Token(Token = "0x60017C2")] [Address(RVA = "0x2BACDA0", Offset = "0x2BABDA0", VA = "0x182BACDA0", Slot = "5")] get { return null; } } // Token: 0x060017C3 RID: 6083 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60017C3")] [Address(RVA = "0x2BAC940", Offset = "0x2BAB940", VA = "0x182BAC940")] private void SetMessageField() { } /// Returns the fully qualified name of the current 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, depending on which constructor is used. // Token: 0x060017C4 RID: 6084 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x60017C4")] [Address(RVA = "0x2BAC9C0", Offset = "0x2BAB9C0", VA = "0x182BAC9C0", 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: 0x060017C5 RID: 6085 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60017C5")] [Address(RVA = "0x2BACCD0", Offset = "0x2BABCD0", VA = "0x182BACCD0")] protected FileLoadException(SerializationInfo info, StreamingContext context) { } /// Gets the log file that describes why an assembly load failed. /// A string containing errors reported by the assembly cache. /// The caller does not have the required permission. // Token: 0x170002CC RID: 716 // (get) Token: 0x060017C6 RID: 6086 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x170002CC")] public string FusionLog { [Token(Token = "0x60017C6")] [Address(RVA = "0x56D550", Offset = "0x56C550", VA = "0x18056D550")] get { return null; } } /// Sets the with the file name 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: 0x060017C7 RID: 6087 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60017C7")] [Address(RVA = "0x2BAC800", Offset = "0x2BAB800", VA = "0x182BAC800", Slot = "10")] public override void GetObjectData(SerializationInfo info, StreamingContext context) { } // Token: 0x060017C8 RID: 6088 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x60017C8")] [Address(RVA = "0x2BAC790", Offset = "0x2BAB790", VA = "0x182BAC790")] internal static string FormatFileLoadExceptionMessage(string fileName, int hResult) { return null; } // Token: 0x04000CC4 RID: 3268 [global::Cpp2IlInjected.FieldOffset(Offset = "0x90")] [Token(Token = "0x4000CC4")] private string _fileName; // Token: 0x04000CC5 RID: 3269 [global::Cpp2IlInjected.FieldOffset(Offset = "0x98")] [Token(Token = "0x4000CC5")] private string _fusionLog; } }