43 lines
2.3 KiB
C#
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 trying to access a drive or share that is not available.</summary>
|
|
// Token: 0x02000284 RID: 644
|
|
[Token(Token = "0x2000284")]
|
|
[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: 0x0600176B RID: 5995 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600176B")]
|
|
[Address(RVA = "0x29347A0", Offset = "0x29335A0", VA = "0x1829347A0")]
|
|
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: 0x0600176C RID: 5996 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600176C")]
|
|
[Address(RVA = "0x2932CF0", Offset = "0x2931AF0", VA = "0x182932CF0")]
|
|
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: 0x0600176D RID: 5997 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600176D")]
|
|
[Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")]
|
|
protected DriveNotFoundException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
}
|
|
}
|