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

AddTextEntry() public method

Adds free text entry.
public AddTextEntry ( string text ) : void
text string
return void
        public void AddTextEntry(string text)
        {
            m_pEntries.Add(new SocketLogEntry(text,0,SocketLogEntryType.FreeText));

            s += CreateEntry(text,"---");
        }