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

Seek() 공개 메소드

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.
리턴 long
        public override long Seek(long offset, SeekOrigin origin)
        {
            throw new NotSupportedException("Seek not supported");
        }