Crisis.Ionic.Zlib.ZlibStream.SetLength C# (CSharp) Method

SetLength() public method

Calling this method always throws a NotSupportedException.
public SetLength ( long value ) : void
value long /// The new value for the stream length.... IF /// THIS METHOD ACTUALLY DID ANYTHING. ///
return void
        public override void SetLength(long value)
        {
            throw new NotSupportedException();
        }