private void InvokeCycleExecutionFailed(CycleExecutionFailedArgs e)
        {
            EventHandler <CycleExecutionFailedArgs> handler = CycleExecutionFailed;

            if (handler != null)
            {
                handler(this, e);
            }
        }
Exemple #2
0
 private void InvokeCycleExecutionFailed(CycleExecutionFailedArgs e)
 {
     EventHandler<CycleExecutionFailedArgs> handler = CycleExecutionFailed;
     if (handler != null) handler(this, e);
 }