NetWrok.HTTP.Zlib.ZlibCodec.EndDeflate C# (CSharp) Method

EndDeflate() public method

End a deflation session.
Call this after making a series of one or more calls to Deflate(). All buffers are flushed.
public EndDeflate ( ) : int
return int
        public int EndDeflate()
        {
            if (dstate == null)
                throw new ZlibException("No Deflate State!");
            int ret = dstate.End();
            dstate = null;
            return ret;
        }