Files
Apr2020-Cpp2Il-Dump/mscorlib/System/IO/DirectoryNotFoundException.cs
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

43 lines
2.3 KiB
C#

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: 0x02000283 RID: 643
[Token(Token = "0x2000283")]
[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: 0x06001768 RID: 5992 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001768")]
[Address(RVA = "0x2932C80", Offset = "0x2931A80", VA = "0x182932C80")]
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: 0x06001769 RID: 5993 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001769")]
[Address(RVA = "0x2932CF0", Offset = "0x2931AF0", VA = "0x182932CF0")]
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: 0x0600176A RID: 5994 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600176A")]
[Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")]
protected DirectoryNotFoundException(SerializationInfo info, StreamingContext context)
{
}
}
}