ICSharpCode.SharpZipLib.Zip.Compression.Streams.InflaterInputStream.SetLength C# (CSharp) 메소드

SetLength() 공개 메소드

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