public SimpleDialogMessageResponse(SimpleDialogMessageResponse.Callback callback)
 {
     this.callback = callback;
 }
Ejemplo n.º 2
0
 public async Task<object> callPersistenceMessaging(SimpleDialogMessageResponse response)
 {
     int Id = Invoke("clientFacadeService", (object)"callPersistenceMessaging", (object)new object[1]
       {
         (object) response.GetBaseTypedObject()
       });
     while (!results.ContainsKey(Id))
         await Task.Delay(10);
     results.Remove(Id);
     return (object)null;
 }