diff --git a/src/Zip/Compression/Streams/InflaterInputStream.cs b/src/Zip/Compression/Streams/InflaterInputStream.cs index 669944441..a0e09a07b 100644 --- a/src/Zip/Compression/Streams/InflaterInputStream.cs +++ b/src/Zip/Compression/Streams/InflaterInputStream.cs @@ -549,7 +549,8 @@ public override bool CanWrite { /// public override long Length { get { - return inputBuffer.RawLength; + //return inputBuffer.RawLength; + throw new NotSupportedException("InflaterInputStream Length is not supported"); } }