ICSharpCode.SharpZipLib.Zip.ZipInputStream.ReadingNotSupported C# (CSharp) Method

ReadingNotSupported() private method

Handle attempts to read from this entry by throwing an exception
private ReadingNotSupported ( byte destination, int offset, int count ) : int
destination byte
offset int
count int
return int
        int ReadingNotSupported(byte[] destination, int offset, int count)
        {
            throw new ZipException("The compression method for this entry is not supported");
        }