Exemplo n.º 1
0
        private void RemoteCallReturn(object sender, RemoteCallReturnEventArgs e)
        {
            InvokedResult result = new InvokedResult(e.Request.Method.Name, e.Request.Result);

            remoteCallers[e.Request.Method.DeclaringType].RemoteCallFinished(result);
        }
Exemplo n.º 2
0
 public void RemoteCallFinished(InvokedResult result)
 {
     if (InvokedMethodFinished != null)
         InvokedMethodFinished(result);
 }