NetWrok.HTTP.Zlib.InflateBlocks.InflateBlocks C# (CSharp) Метод

InflateBlocks() приватный Метод

private InflateBlocks ( ZlibCodec z, System checkfn, int w ) : System
z ZlibCodec
checkfn System
w int
Результат System
        internal InflateBlocks(ZlibCodec z, System.Object checkfn, int w)
        {
            hufts = new int[MANY * 3];
            window = new byte[w];
            end = w;
            this.checkfn = checkfn;
            mode = TYPE;
            Reset (z, null);
        }