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

InitializeInflate() public method

Initialize the ZlibCodec for inflation, with the specified number of window bits.
public InitializeInflate ( int windowBits ) : int
windowBits int The number of window bits to use. If you need to ask what that is, /// then you shouldn't be calling this initializer.
return int
        public int InitializeInflate(int windowBits)
        {
            return InitializeInflate(windowBits, true);
        }

Same methods

ZlibCodec::InitializeInflate ( ) : int
ZlibCodec::InitializeInflate ( bool expectRfc1950Header ) : int
ZlibCodec::InitializeInflate ( int windowBits, bool expectRfc1950Header ) : int