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

Flush() public method

public Flush ( ) : void
return void
        public void Flush()
        {
            if(m_pLogHandler != null){
                s += "//----- Sys: 'Session:'" + this.SessionID + " removed " + DateTime.Now + "\r\n";

                m_pLogHandler(this,new Log_EventArgs(s,this));
            //		m_Flushed = true;
                s = "";
            }
        }