Crisis.Ionic.Zlib.ZlibStream.Seek C# (CSharp) Method

Seek() public method

Calling this method always throws a NotSupportedException.
public Seek ( long offset, System origin ) : long
offset long /// The offset to seek to.... /// IF THIS METHOD ACTUALLY DID ANYTHING. ///
origin System /// The reference specifying how to apply the offset.... IF /// THIS METHOD ACTUALLY DID ANYTHING. ///
return long
        public override long Seek(long offset, System.IO.SeekOrigin origin)
        {
            throw new NotSupportedException();
        }