public void Send()
        {
            System.MulticastDelegate m     = (System.MulticastDelegate)OnStart;
            System.Delegate[]        dlist = m.GetInvocationList();
            foreach (System.Delegate thisDelegate in dlist)
            {
                object[] p   = { /*put your parameters here*/ };
                object   ret = thisDelegate.DynamicInvoke(p);
            } // Next thisDelegate

            OnStart(this, null);

            foreach (System.Data.DataRow dr in Data.Rows)
            {
                if (object.Equals("a", "b"))
                {
                    OnSuccess(this, null);
                }
                else
                {
                    OnFailure(this, null);
                }

                OnAlways(this, null);
            } // Next dr

            OnDone(this, null);
        } // End Sub Send
Beispiel #2
0
 public static void RaiseEventAndExecuteItInTheTargetThread(System.MulticastDelegate _event, object[] _ParamArray_args)
 {
     if ((_event != null))
     {
         if (_event.GetInvocationList().Length > 0)
         {
             System.ComponentModel.ISynchronizeInvoke _sync = null;
             foreach (System.MulticastDelegate _delegate in _event.GetInvocationList())
             {
                 if (((_sync == null) && (typeof(System.ComponentModel.ISynchronizeInvoke).IsAssignableFrom(_delegate.Target.GetType())) && (!_delegate.Target.GetType().IsAbstract)))
                 {
                     try
                     {
                         _sync = (System.ComponentModel.ISynchronizeInvoke)_delegate.Target;
                     }
                     catch (System.Exception ex)
                     {
                         System.Diagnostics.Debug.WriteLine(ex.ToString());
                         _sync = null;
                     }
                 }
                 if (_sync == null)
                 {
                     try
                     {
                         _delegate.DynamicInvoke(_ParamArray_args);
                     }
                     catch (System.Exception ex)
                     {
                         System.Diagnostics.Debug.WriteLine(ex.ToString());
                     }
                 }
                 else
                 {
                     try
                     {
                         _sync.Invoke(_delegate, _ParamArray_args);
                     }
                     catch (System.Exception ex)
                     {
                         System.Diagnostics.Debug.WriteLine(ex.ToString());
                     }
                 }
             }
         }
     }
 }
Beispiel #3
0
 private static void    InvokeEvent(System.MulticastDelegate ev)
 {
     Utilities.Utilities.InvokeEventExceptionSafe(ev);
 }