C# Класс Microsoft.Deployment.Compression.ArchiveException

Наследование: IOException
Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Защищенные методы

Метод Описание
ArchiveException ( SerializationInfo info, StreamingContext context ) : System

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

Описание методов

ArchiveException() публичный Метод

Creates a new ArchiveException.
public ArchiveException ( ) : System
Результат System

ArchiveException() защищенный Метод

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.
Результат System

ArchiveException() публичный Метод

Creates a new ArchiveException with a specified error message.
public ArchiveException ( string message ) : System
message string The message that describes the error.
Результат System

ArchiveException() публичный Метод

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.
Результат System