C# Класс SixLabors.ZlibStream.ZlibStreamException

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

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

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