Ionic.Zlib.GZipStream.Seek C# (CSharp) Méthode

Seek() public méthode

Calling this method always throws a NotImplementedException.
public Seek ( long offset, SeekOrigin origin ) : long
offset long irrelevant; it will always throw!
origin SeekOrigin irrelevant; it will always throw!
Résultat long
        public override long Seek(long offset, SeekOrigin origin)
        {
            throw new NotImplementedException();
        }