private void Chat_Login_Callback(Chat_Login_ReturnType returnData)
 {
     if (returnData.Success)
     {
     }
 }
 private void Chat_Login_Callback(Chat_Login_ReturnType returnData)
 {
     if (returnData.Success)
     {
     }
 }
Ejemplo n.º 3
0
 public void OurRemoteAsyncCallBack_Chat_Login(IAsyncResult ar)
 {
     RemoteAsyncDelegate_Chat_Login asyncDelegate = (RemoteAsyncDelegate_Chat_Login) ((AsyncResult) ar).AsyncDelegate;
     try
     {
         this.storeRPCresult(ar, asyncDelegate.EndInvoke(ar));
     }
     catch (Exception exception)
     {
         Chat_Login_ReturnType returnData = new Chat_Login_ReturnType();
         this.manageRemoteExpection(ar, returnData, exception);
     }
 }