Cimbalino.Phone.Toolkit.Compression.InflateManager.Reset C# (CSharp) Method

Reset() private method

private Reset ( ) : int
return int
        internal int Reset()
        {
            _codec.TotalBytesIn = _codec.TotalBytesOut = 0;
            _codec.Message = null;
            mode = HandleRfc1950HeaderBytes ? InflateManagerMode.METHOD : InflateManagerMode.BLOCKS;
            blocks.Reset();
            return ZlibConstants.Z_OK;
        }