ICSharpCode.SharpZipLib.Zip.Compression.Streams.InflaterInputStream.SetLength C# (CSharp) Méthode

SetLength() public méthode

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.
Résultat void
        public override void SetLength(long value)
        {
            throw new NotSupportedException("InflaterInputStream SetLength not supported");
        }