using System; using System.Runtime.InteropServices; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System.IO { /// The exception that is thrown when trying to access a drive or share that is not available. // Token: 0x0200028B RID: 651 [Token(Token = "0x200028B")] [ComVisible(true)] [Serializable] public class DriveNotFoundException : IOException { /// Initializes a new instance of the class with its message string set to a system-supplied message and its HRESULT set to COR_E_DIRECTORYNOTFOUND. // Token: 0x060017AA RID: 6058 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60017AA")] [Address(RVA = "0x2BAC000", Offset = "0x2BAB000", VA = "0x182BAC000")] public DriveNotFoundException() { } /// Initializes a new instance of the class with the specified message string and the HRESULT set to COR_E_DIRECTORYNOTFOUND. /// A 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. // Token: 0x060017AB RID: 6059 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60017AB")] [Address(RVA = "0x2BAA670", Offset = "0x2BA9670", VA = "0x182BAA670")] public DriveNotFoundException(string message) { } /// Initializes a new instance of the class with the specified serialization and context information. /// A object that contains the serialized object data about the exception being thrown. /// A object that contains contextual information about the source or destination of the exception being thrown. // 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) { } } }