ICSharpCode.SharpZipLib.Zip.Compression.Streams.DeflaterOutputStream.SetLength C# (CSharp) Method

SetLength() public method

Sets the length of this stream to the given value. Not supported by this class!
Any access
public SetLength ( long value ) : void
value long The new stream length.
return void
        public override void SetLength(long value)
        {
            throw new NotSupportedException("DeflaterOutputStream SetLength not supported");
        }