ICSharpCode.SharpZipLib.Zip.ZipInputStream.ReadingNotSupported C# (CSharp) 메소드

ReadingNotSupported() 개인적인 메소드

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
리턴 int
        int ReadingNotSupported(byte[] destination, int offset, int count)
        {
            throw new ZipException("The compression method for this entry is not supported");
        }