Files
27Aug2021-Cpp2IL-Dump/mscorlib/System/IO/FileNotFoundException.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

121 lines
5.6 KiB
C#

using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.IO
{
/// <summary>The exception that is thrown when an attempt to access a file that does not exist on disk fails.</summary>
// Token: 0x0200028F RID: 655
[Token(Token = "0x200028F")]
[ComVisible(true)]
[Serializable]
public class FileNotFoundException : IOException
{
/// <summary>Initializes a new instance of the <see cref="T:System.IO.FileNotFoundException" /> class with its message string set to a system-supplied message.</summary>
// Token: 0x060017C9 RID: 6089 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017C9")]
[Address(RVA = "0x2BAD260", Offset = "0x2BAC260", VA = "0x182BAD260")]
public FileNotFoundException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.IO.FileNotFoundException" /> class with a specified error message.</summary>
/// <param name="message">A description of the error. The content of <paramref name="message" /> 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.</param>
// Token: 0x060017CA RID: 6090 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017CA")]
[Address(RVA = "0x2BAD2C0", Offset = "0x2BAC2C0", VA = "0x182BAD2C0")]
public FileNotFoundException(string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.IO.FileNotFoundException" /> class with a specified error message, and the file name that cannot be found.</summary>
/// <param name="message">A description of the error. The content of <paramref name="message" /> 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.</param>
/// <param name="fileName">The full name of the file with the invalid image.</param>
// 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)
{
}
/// <summary>Gets the error message that explains the reason for the exception.</summary>
/// <returns>The error message.</returns>
// 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()
{
}
/// <summary>Returns the fully qualified name of this exception and possibly the error message, the name of the inner exception, and the stack trace.</summary>
/// <returns>The fully qualified name of this exception and possibly the error message, the name of the inner exception, and the stack trace.</returns>
// 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;
}
/// <summary>Initializes a new instance of the <see cref="T:System.IO.FileNotFoundException" /> class with the specified serialization and context information.</summary>
/// <param name="info">An object that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">An object that contains contextual information about the source or destination.</param>
// 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)
{
}
/// <summary>Gets the log file that describes why loading of an assembly failed.</summary>
/// <returns>The errors reported by the assembly cache.</returns>
/// <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
// 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;
}
}
/// <summary>Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the file name and additional exception information.</summary>
/// <param name="info">The object that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The object that contains contextual information about the source or destination.</param>
// 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;
}
}