using System; using System.Runtime.InteropServices; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System.IO { /// The exception that is thrown when an attempt to access a file that does not exist on disk fails. // Token: 0x0200028F RID: 655 [Token(Token = "0x200028F")] [ComVisible(true)] [Serializable] public class FileNotFoundException : IOException { /// Initializes a new instance of the class with its message string set to a system-supplied message. // Token: 0x060017C9 RID: 6089 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60017C9")] [Address(RVA = "0x2BAD260", Offset = "0x2BAC260", VA = "0x182BAD260")] public FileNotFoundException() { } /// Initializes a new instance of the class with a specified error message. /// A description of 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: 0x060017CA RID: 6090 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60017CA")] [Address(RVA = "0x2BAD2C0", Offset = "0x2BAC2C0", VA = "0x182BAD2C0")] public FileNotFoundException(string message) { } /// Initializes a new instance of the class with a specified error message, and the file name that cannot be found. /// A description of 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. /// The full name of the file with the invalid image. // Token: 0x060017CB RID: 6091 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60017CB")] [Address(RVA = "0x2BAD2F0", Offset = "0x2BAC2F0", VA = "0x182BAD2F0")] public FileNotFoundException(string message, string fileName) { } /// Gets the error message that explains the reason for the exception. /// The error message. // Token: 0x170002CD RID: 717 // (get) Token: 0x060017CC RID: 6092 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x170002CD")] public override string Message { [Token(Token = "0x60017CC")] [Address(RVA = "0x2BAD400", Offset = "0x2BAC400", VA = "0x182BAD400", Slot = "5")] get { return null; } } // Token: 0x060017CD RID: 6093 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60017CD")] [Address(RVA = "0x2BACF70", Offset = "0x2BABF70", VA = "0x182BACF70")] 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. /// The fully qualified name of this exception and possibly the error message, the name of the inner exception, and the stack trace. // Token: 0x060017CE RID: 6094 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x60017CE")] [Address(RVA = "0x2BACFE0", Offset = "0x2BABFE0", VA = "0x182BACFE0", Slot = "3")] public override string ToString() { return null; } /// Initializes a new instance of the class with the specified serialization and context information. /// An object that holds the serialized object data about the exception being thrown. /// An object that contains contextual information about the source or destination. // Token: 0x060017CF RID: 6095 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60017CF")] [Address(RVA = "0x2BAD330", Offset = "0x2BAC330", VA = "0x182BAD330")] protected FileNotFoundException(SerializationInfo info, StreamingContext context) { } /// Gets the log file that describes why loading of an assembly failed. /// The errors reported by the assembly cache. /// The caller does not have the required permission. // Token: 0x170002CE RID: 718 // (get) Token: 0x060017D0 RID: 6096 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x170002CE")] public string FusionLog { [Token(Token = "0x60017D0")] [Address(RVA = "0x56D550", Offset = "0x56C550", VA = "0x18056D550")] get { return null; } } /// Sets the object with the file name and additional exception information. /// The object that holds the serialized object data about the exception being thrown. /// The object that contains contextual information about the source or destination. // Token: 0x060017D1 RID: 6097 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60017D1")] [Address(RVA = "0x2BACE30", Offset = "0x2BABE30", VA = "0x182BACE30", Slot = "10")] public override void GetObjectData(SerializationInfo info, StreamingContext context) { } // Token: 0x04000CC6 RID: 3270 [global::Cpp2IlInjected.FieldOffset(Offset = "0x90")] [Token(Token = "0x4000CC6")] private string _fileName; // Token: 0x04000CC7 RID: 3271 [global::Cpp2IlInjected.FieldOffset(Offset = "0x98")] [Token(Token = "0x4000CC7")] private string _fusionLog; } }