C# Class Microsoft.Deployment.Compression.ArchiveException

Inheritance: IOException
Afficher le fichier Open project: replisys/remin-core

Méthodes publiques

Méthode Description
ArchiveException ( ) : System

Creates a new ArchiveException.

ArchiveException ( string message ) : System

Creates a new ArchiveException with a specified error message.

ArchiveException ( string message, Exception innerException ) : System

Creates a new ArchiveException with a specified error message and a reference to the inner exception that is the cause of this exception.

Méthodes protégées

Méthode Description
ArchiveException ( SerializationInfo info, StreamingContext context ) : System

Initializes a new instance of the ArchiveException class with serialized data.

Method Details

ArchiveException() public méthode

Creates a new ArchiveException.
public ArchiveException ( ) : System
Résultat System

ArchiveException() protected méthode

Initializes a new instance of the ArchiveException class with serialized data.
protected ArchiveException ( SerializationInfo info, StreamingContext context ) : System
info SerializationInfo The SerializationInfo that holds the serialized object data about the exception being thrown.
context StreamingContext The StreamingContext that contains contextual information about the source or destination.
Résultat System

ArchiveException() public méthode

Creates a new ArchiveException with a specified error message.
public ArchiveException ( string message ) : System
message string The message that describes the error.
Résultat System

ArchiveException() public méthode

Creates a new ArchiveException with a specified error message and a reference to the inner exception that is the cause of this exception.
public ArchiveException ( string message, Exception innerException ) : System
message string The message that describes the error.
innerException Exception The exception that is the cause of the current exception. If the /// innerException parameter is not a null reference (Nothing in Visual Basic), the current exception /// is raised in a catch block that handles the inner exception.
Résultat System