LumiSoft.Net._LogWriter.Flush C# (CSharp) Method

Flush() public method

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