Example #1
0
 public void OnStep(Int64 eventId, Int64 step, DateTime time)
 {
     if (Step != null)
     {
         foreach (StepHandler stepHandler in Step.GetInvocationList())
         {
             try { stepHandler(eventId, step, time); }
             catch (SocketException) { Step -= stepHandler; }
         }
     }
 }