NetWrok.HTTP.Zlib.GZipStream.Seek C# (CSharp) Method

Seek() public method

Calling this method always throws a NotImplementedException.
public Seek ( long offset, System origin ) : long
offset long this is irrelevant, since it will always throw!
origin System this is irrelevant, since it will always throw!
return long
        public override long Seek(long offset, System.IO.SeekOrigin origin)
        {
            throw new NotImplementedException();
        }