QuickFix.FileLog.OnEvent C# (CSharp) Метод

OnEvent() публичный Метод

public OnEvent ( string s ) : void
s string
Результат void
        public void OnEvent(string s)
        {
            lock (sync_)
            {
                file_.WriteLine("<event> " + s);
                file_.Flush();
            }
        }

Usage Example

Пример #1
0
 /// FIXME do real logging
 public void Log(string s)
 {
     if (log_ != null)
     {
         log_.OnEvent(s);
     }
 }
All Usage Examples Of QuickFix.FileLog::OnEvent