C# Класс ThemeEditor.Common.Compression.NotEnoughDataException

An exception that is thrown by the decompression functions when there is not enough data available in order to properly decompress the input.
Наследование: System.IO.IOException
Показать файл Открыть проект

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

Метод Описание
NotEnoughDataException ( long currentOutSize, long totalOutSize ) : System.IO

Creates a new NotEnoughDataException.

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

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

Creates a new NotEnoughDataException.
public NotEnoughDataException ( long currentOutSize, long totalOutSize ) : System.IO
currentOutSize long The actual number of written bytes.
totalOutSize long The desired number of written bytes.
Результат System.IO