IOException Classe
Definizione
Eccezione generata quando si verifica un errore di I/O.The exception that is thrown when an I/O error occurs.
public ref class IOException : Exception
public ref class IOException : SystemException
public class IOException : Exception
public class IOException : SystemException
[System.Serializable]
public class IOException : SystemException
[System.Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
public class IOException : SystemException
type IOException = class
inherit Exception
type IOException = class
inherit SystemException
[<System.Serializable>]
type IOException = class
inherit SystemException
[<System.Serializable>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type IOException = class
inherit SystemException
Public Class IOException
Inherits Exception
Public Class IOException
Inherits SystemException
- Ereditarietà
- Ereditarietà
- Derivato
- Attributi
Esempio
Questo esempio di codice fa parte di un esempio più ampio fornito per il FileStream.Lock metodo.This code example is part of a larger example provided for the FileStream.Lock method.
// Catch the IOException generated if the
// specified part of the file is locked.
catch ( IOException^ e )
{
Console::WriteLine( "{0}: The write operation could not "
"be performed because the specified "
"part of the file is locked.", e->GetType()->Name );
}
// Catch the IOException generated if the
// specified part of the file is locked.
catch(IOException e)
{
Console.WriteLine(
"{0}: The write operation could not " +
"be performed because the specified " +
"part of the file is locked.",
e.GetType().Name);
}
' Catch the IOException generated if the
' specified part of the file is locked.
Catch ex As IOException
Console.WriteLine( _
"{0}: The write operation could " & _
"not be performed because the " & _
"specified part of the file is " & _
"locked.", ex.GetType().Name)
End Try
Commenti
IOException è la classe base per le eccezioni generate durante l'accesso a informazioni tramite flussi, file e directory.IOException is the base class for exceptions thrown while accessing information using streams, files and directories.
La libreria di classi di base include i tipi seguenti, ognuno dei quali è una classe derivata di IOException
:The Base Class Library includes the following types, each of which is a derived class of IOException
:
Se appropriato, usare questi tipi anziché IOException.Where appropriate, use these types instead of IOException.
IOException USA HRESULT COR_E_IO il cui valore è 0x80131620.IOException uses the HRESULT COR_E_IO which has the value 0x80131620.
Costruttori
IOException() |
Inizializza una nuova istanza della classe IOException con la stringa del messaggio impostata sulla stringa vuota (""), il valore di HRESULT impostato su COR_E_IO e l'eccezione interna impostata su un riferimento null.Initializes a new instance of the IOException class with its message string set to the empty string (""), its HRESULT set to COR_E_IO, and its inner exception set to a null reference. |
IOException(SerializationInfo, StreamingContext) |
Inizializza una nuova istanza della classe IOException con le informazioni di serializzazione e di contesto specificate.Initializes a new instance of the IOException class with the specified serialization and context information. |
IOException(String) |
Inizializza una nuova istanza della classe IOException con la stringa del messaggio impostata su |
IOException(String, Exception) |
Inizializza una nuova istanza della classe IOException con un messaggio di errore specificato e un riferimento all'eccezione interna che è la causa dell'eccezione corrente.Initializes a new instance of the IOException class with a specified error message and a reference to the inner exception that is the cause of this exception. |
IOException(String, Int32) |
Inizializza una nuova istanza della classe IOException con la relativa stringa di messaggio impostata su |
Proprietà
Data |
Ottiene una raccolta di coppie chiave/valore che forniscono informazioni definite dall'utente aggiuntive sull'eccezione.Gets a collection of key/value pairs that provide additional user-defined information about the exception. (Ereditato da Exception) |
HelpLink |
Ottiene o imposta un collegamento al file della Guida associato all'eccezione.Gets or sets a link to the help file associated with this exception. (Ereditato da Exception) |
HResult |
Ottiene o imposta HRESULT, un valore numerico codificato che viene assegnato a un'eccezione specifica.Gets or sets HRESULT, a coded numerical value that is assigned to a specific exception. (Ereditato da Exception) |
InnerException |
Ottiene l'istanza di Exception che ha causato l'eccezione corrente.Gets the Exception instance that caused the current exception. (Ereditato da Exception) |
Message |
Ottiene un messaggio che descrive l'eccezione corrente.Gets a message that describes the current exception. (Ereditato da Exception) |
Source |
Ottiene o imposta il nome dell'oggetto o dell'applicazione che ha generato l'errore.Gets or sets the name of the application or the object that causes the error. (Ereditato da Exception) |
StackTrace |
Ottiene una rappresentazione di stringa dei frame immediati nello stack di chiamate.Gets a string representation of the immediate frames on the call stack. (Ereditato da Exception) |
TargetSite |
Ottiene il metodo che genera l'eccezione corrente.Gets the method that throws the current exception. (Ereditato da Exception) |
Metodi
Equals(Object) |
Determina se l'oggetto specificato è uguale all'oggetto corrente.Determines whether the specified object is equal to the current object. (Ereditato da Object) |
GetBaseException() |
Quando ne viene eseguito l'override in una classe derivata, restituisce l'Exception che è la causa radice di una o più eccezioni successive.When overridden in a derived class, returns the Exception that is the root cause of one or more subsequent exceptions. (Ereditato da Exception) |
GetHashCode() |
Funge da funzione hash predefinita.Serves as the default hash function. (Ereditato da Object) |
GetObjectData(SerializationInfo, StreamingContext) |
Quando ne viene eseguito l'override in una classe derivata, imposta il controllo SerializationInfo con le informazioni sull'eccezione.When overridden in a derived class, sets the SerializationInfo with information about the exception. (Ereditato da Exception) |
GetType() |
Ottiene il tipo di runtime dell'istanza corrente.Gets the runtime type of the current instance. (Ereditato da Exception) |
MemberwiseClone() |
Crea una copia superficiale dell'oggetto Object corrente.Creates a shallow copy of the current Object. (Ereditato da Object) |
ToString() |
Crea e restituisce una rappresentazione di stringa dell'eccezione corrente.Creates and returns a string representation of the current exception. (Ereditato da Exception) |
Eventi
SerializeObjectState |
Si verifica quando un'eccezione viene serializzata per creare un oggetto di stato eccezione contenente i dati serializzati relativi all'eccezione.Occurs when an exception is serialized to create an exception state object that contains serialized data about the exception. (Ereditato da Exception) |