This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,42 @@
using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.IO
{
/// <summary>The exception that is thrown when part of a file or directory cannot be found.</summary>
// Token: 0x0200028A RID: 650
[Token(Token = "0x200028A")]
[ComVisible(true)]
[Serializable]
public class DirectoryNotFoundException : IOException
{
/// <summary>Initializes a new instance of the <see cref="T:System.IO.DirectoryNotFoundException" /> class with its message string set to a system-supplied message and its HRESULT set to COR_E_DIRECTORYNOTFOUND.</summary>
// Token: 0x060017A7 RID: 6055 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017A7")]
[Address(RVA = "0x2BAA610", Offset = "0x2BA9610", VA = "0x182BAA610")]
public DirectoryNotFoundException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.IO.DirectoryNotFoundException" /> class with its message string set to <paramref name="message" /> and its HRESULT set to COR_E_DIRECTORYNOTFOUND.</summary>
/// <param name="message">A <see cref="T:System.String" /> that describes 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: 0x060017A8 RID: 6056 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017A8")]
[Address(RVA = "0x2BAA670", Offset = "0x2BA9670", VA = "0x182BAA670")]
public DirectoryNotFoundException(string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.IO.DirectoryNotFoundException" /> class with the specified serialization and context information.</summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
// Token: 0x060017A9 RID: 6057 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017A9")]
[Address(RVA = "0x71ABC0", Offset = "0x719BC0", VA = "0x18071ABC0")]
protected DirectoryNotFoundException(SerializationInfo info, StreamingContext context)
{
}
}
}