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

SetLength() public method

Set the length of the current stream Always throws a NotSupportedException
Any access
public SetLength ( long value ) : void
value long The new length value for the stream.
return void
        public override void SetLength(long value)
        {
            throw new NotSupportedException("InflaterInputStream SetLength not supported");
        }