Ionic.Zip.ZipOutputStream.Read C# (CSharp) Method

Read() public method

This method always throws a NotSupportedException.
public Read ( byte buffer, int offset, int count ) : int
buffer byte ignored
offset int ignored
count int ignored
return int
        public override int Read(byte[] buffer, int offset, int count)
        {
            throw new NotSupportedException("Read");
        }