public int EndInflate()
        {
            if (this.istate == null)
            {
                throw new ZlibException("No Inflate State!");
            }
            int result = this.istate.End();

            this.istate = null;
            return(result);
        }