C# 클래스 SixLabors.ZlibStream.ZlibStreamException

상속: IOException
파일 보기 프로젝트 열기: SixLabors/ZlibStream

공개 메소드들

메소드 설명
ZlibStreamException ( ) : System

Initializes a new instance of the ZlibStreamException class with no argrument.

ZlibStreamException ( string message ) : System

Initializes a new instance of the ZlibStreamException class with its message string set to message, its HRESULT set to COR_E_IO, and its inner exception set to .

ZlibStreamException ( string message, Exception innerException ) : System

Initializes a new instance of the ZlibStreamException class with a specified error message and a reference to the inner exception that is the cause of this exception.

ZlibStreamException ( string message, int hresult ) : System

Initializes a new instance of the ZlibStreamException class with its message string set to message and its HRESULT user-defined.

비공개 메소드들

메소드 설명
ZlibStreamException ( SerializationInfo info, StreamingContext context ) : System

Initializes a new instance of the ZlibStreamException class with the specified serialization and context information.

메소드 상세

ZlibStreamException() 공개 메소드

Initializes a new instance of the ZlibStreamException class with no argrument.
public ZlibStreamException ( ) : System
리턴 System

ZlibStreamException() 공개 메소드

Initializes a new instance of the ZlibStreamException class with its message string set to message, its HRESULT set to COR_E_IO, and its inner exception set to .
public ZlibStreamException ( string message ) : System
message string A that describes the error. The content of is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture.
리턴 System

ZlibStreamException() 공개 메소드

Initializes a new instance of the ZlibStreamException class with a specified error message and a reference to the inner exception that is the cause of this exception.
public ZlibStreamException ( string message, Exception innerException ) : System
message string The error message that explains the reason for the exception.
innerException Exception /// The exception that is the cause of the current exception. /// If the parameter is not , the /// current exception is raised in a block that handles the inner /// exception. ///
리턴 System

ZlibStreamException() 공개 메소드

Initializes a new instance of the ZlibStreamException class with its message string set to message and its HRESULT user-defined.
public ZlibStreamException ( string message, int hresult ) : System
message string /// A that describes the error. /// The content of is intended to be understood by humans. /// The caller of this constructor is required to ensure that this string has been localized /// for the current system culture. ///
hresult int An integer identifying the error that has occurred.
리턴 System