Ejemplo n.º 1
0
        public static void RemoteAsyncCallBackAdd(IAsyncResult ar)
        {
            AsyncAddDelegate del = (AsyncAddDelegate)((AsyncResult)ar).AsyncDelegate;

            try { del.EndInvoke(ar); }
            catch (Exception e) { Console.WriteLine("(ADD) COULD NOT REACH"); }
        }
Ejemplo n.º 2
0
        public static void RemoteAsyncCallBackAdd(IAsyncResult ar)
        {
            AsyncAddDelegate del = (AsyncAddDelegate)((AsyncResult)ar).AsyncDelegate;

            try
            {
                del.EndInvoke(ar);
            }catch (Exception ex) { return; }

            //throw new NotImplementedException();
        }
Ejemplo n.º 3
0
        public static void RemoteAsyncCallBackAdd(IAsyncResult ar)
        {
            AsyncAddDelegate del = (AsyncAddDelegate)((AsyncResult)ar).AsyncDelegate;

            del.EndInvoke(ar);
        }