C# 클래스 WixToolset.Dtf.Compression.ArchiveException

상속: IOException
파일 보기 프로젝트 열기: wixtoolset/wix4

공개 메소드들

메소드 설명
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