Ionic.Zip.ZipInputStream.Write C# (CSharp) Method

Write() public method

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