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

Seek() public method

Sets the current position of this stream to the given value. Not supported by this class!
Any access
public Seek ( long offset, SeekOrigin origin ) : long
offset long The offset relative to the to seek.
origin SeekOrigin The to seek from.
return long
        public override long Seek(long offset, SeekOrigin origin)
        {
            throw new NotSupportedException("DeflaterOutputStream Seek not supported");
        }