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

SetLength() public method

This method always throws a NotSupportedException.
public SetLength ( long value ) : void
value long ignored
return void
        public override void SetLength(long value)
        {
            throw new NotSupportedException();
        }