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

Inflate() public method

Inflate the data in the InputBuffer, placing the result in the OutputBuffer.
You must have set InputBuffer and OutputBuffer, NextIn and NextOut, and AvailableBytesIn and AvailableBytesOut before calling this method.
public Inflate ( int f ) : int
f int I think you want to set this to Z_NO_FLUSH.
return int
        public int Inflate(int f)
        {
            if (istate == null)
                throw new ZlibException("No Inflate State!");
            return istate.Inflate(this, f);
        }