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

ReadingNotAvailable() private method

Handle attempts to read by throwing an InvalidOperationException.
private ReadingNotAvailable ( byte destination, int offset, int count ) : int
destination byte The destination array to store data in.
offset int The offset at which data read should be stored.
count int The maximum number of bytes to read.
return int
        int ReadingNotAvailable(byte[] destination, int offset, int count)
        {
            throw new InvalidOperationException("Unable to read from this stream");
        }