Ionic.Zlib.GZipStream.SetLength C# (CSharp) Method

SetLength() public method

Calling this method always throws a NotImplementedException.
public SetLength ( long value ) : void
value long irrelevant; this method will always throw!
return void
        public override void SetLength(long value)
        {
            throw new NotImplementedException();
        }