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

Seek() public method

Sets the position within the current stream Always throws a NotSupportedException
Any access
public Seek ( long offset, SeekOrigin origin ) : long
offset long The relative offset to seek to.
origin SeekOrigin The defining where to seek from.
return long
        public override long Seek(long offset, SeekOrigin origin)
        {
            throw new NotSupportedException("Seek not supported");
        }