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 trying to access a drive or share that is not available.</summary>
// Token: 0x0200028B RID: 651
[Token(Token = "0x200028B")]
[ComVisible(true)]
[Serializable]
public class DriveNotFoundException : IOException
{
/// <summary>Initializes a new instance of the <see cref="T:System.IO.DriveNotFoundException" /> class with its message string set to a system-supplied message and its HRESULT set to COR_E_DIRECTORYNOTFOUND.</summary>
// Token: 0x060017AA RID: 6058 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017AA")]
[Address(RVA = "0x2BAC000", Offset = "0x2BAB000", VA = "0x182BAC000")]
public DriveNotFoundException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.IO.DriveNotFoundException" /> class with the specified message string and the HRESULT set to COR_E_DIRECTORYNOTFOUND.</summary>
/// <param name="message">A <see cref="T:System.String" /> object that describes the error. The caller of this constructor is required to ensure that this string has been localized for the current system culture.</param>
// Token: 0x060017AB RID: 6059 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017AB")]
[Address(RVA = "0x2BAA670", Offset = "0x2BA9670", VA = "0x182BAA670")]
public DriveNotFoundException(string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.IO.DriveNotFoundException" /> class with the specified serialization and context information.</summary>
/// <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that contains the serialized object data about the exception being thrown.</param>
/// <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> object that contains contextual information about the source or destination of the exception being thrown.</param>
// Token: 0x060017AC RID: 6060 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017AC")]
[Address(RVA = "0x71ABC0", Offset = "0x719BC0", VA = "0x18071ABC0")]
protected DriveNotFoundException(SerializationInfo info, StreamingContext context)
{
}
}
}