NetWrok.HTTP.Zlib.InflateManager.SyncPoint C# (CSharp) Method

SyncPoint() private method

private SyncPoint ( ZlibCodec z ) : int
z ZlibCodec
return int
        internal int SyncPoint(ZlibCodec z)
        {
            if (z == null || z.istate == null || z.istate.blocks == null)
                return ZlibConstants.Z_STREAM_ERROR;
            return z.istate.blocks.SyncPoint ();
        }