Ionic.Zlib.ParallelDeflateOutputStream.InnerClose C# (CSharp) Method

InnerClose() private method

private InnerClose ( ) : void
return void
        private void InnerClose()
        {
            TraceOutput(TraceBits.Session, "Close {0:X8}", this.GetHashCode());

            if (_pendingException != null)
            {
                _handlingException = true;
                var pe = _pendingException;
                _pendingException = null;
                throw pe;
            }

            if (_handlingException)
                return;

            if (_isClosed) return;

            _Flush(true);

            if (!_leaveOpen)
                _outStream.Dispose();

            _isClosed= true;
        }