Ionic.Zlib.ParallelDeflateOutputStream.Flush C# (CSharp) 메소드

Flush() 공개 메소드

Flush the stream.
public Flush ( ) : void
리턴 void
        public override void Flush()
        {
            if (_pendingException != null)
            {
                _handlingException = true;
                var pe = _pendingException;
                _pendingException = null;
                throw pe;
            }
            if (_handlingException)
                return;

            _Flush(false);
        }