C# Класс GARCTool.TooMuchInputException

An exception indication that the input has more data than required in order to decompress it. This may indicate that more sub-files are present in the file.
Наследование: System.Exception
Показать файл Открыть проект

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

Метод Описание
TooMuchInputException ( long readBytes, long totLength ) : System

Creates a new exception indicating that the input has more data than necessary for decompressing th stream. It may indicate that other data is present after the compressed stream.

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

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

Creates a new exception indicating that the input has more data than necessary for decompressing th stream. It may indicate that other data is present after the compressed stream.
public TooMuchInputException ( long readBytes, long totLength ) : System
readBytes long The number of bytes read by the decompressor.
totLength long The indicated length of the input stream.
Результат System