LumiSoft.Net._LogWriter.Flush C# (CSharp) 메소드

Flush() 공개 메소드

Writes all log entries to log file.
public Flush ( ) : void
리턴 void
        public void Flush()
        {
            if(!m_Flushed && m_LogHandler != null){
                m_LogHandler(this,new Log_EventArgs(m_Log));
                m_Flushed = true;
            }
        }