Example #1
0
        public static void RemoteAsyncCallBackTake(IAsyncResult ar)
        {
            AsyncTakeDelegate del = (AsyncTakeDelegate)((AsyncResult)ar).AsyncDelegate;

            del.EndInvoke(ar);
            throw new NotImplementedException();
        }
Example #2
0
        private IAsyncResult RemoteAsyncCallTake(Node node, ISchema schema)
        {
            AsyncTakeDelegate RemoteDel = new AsyncTakeDelegate(node.TakeS);
            IAsyncResult      RemAr     = RemoteDel.BeginInvoke(schema, RemoteAsyncCallBackAdd, null);

            return(RemAr);
        }
Example #3
0
        private IAsyncResult RemoteAsyncCallTake(Node node, ISchema schema)
        {
            AsyncTakeDelegate RemoteDel = new AsyncTakeDelegate(node.TakeS);
            IAsyncResult      RemAr     = RemoteDel.BeginInvoke(schema, RemoteAsyncCallBackAdd, null);

            return(RemAr);
            //throw new NotImplementedException();
        }
Example #4
0
        public static void RemoteAsyncCallBackTake(IAsyncResult ar)
        {
            AsyncTakeDelegate del = (AsyncTakeDelegate)((AsyncResult)ar).AsyncDelegate;

            del.EndInvoke(ar);
        }