Exemple #1
0
 public System.IAsyncResult BeginSaveApplicationUser(IndoorWorx.Infrastructure.Models.ApplicationUser user, System.AsyncCallback callback, object asyncState)
 {
     object[] _args = new object[1];
     _args[0] = user;
     System.IAsyncResult _result = base.BeginInvoke("SaveApplicationUser", _args, callback, asyncState);
     return(_result);
 }
Exemple #2
0
 private object[] OnEndRetrieveApplicationUser(System.IAsyncResult result)
 {
     IndoorWorx.Infrastructure.Models.ApplicationUser retVal = ((IndoorWorx.Library.ApplicationUserServiceReference.IApplicationUserService)(this)).EndRetrieveApplicationUser(result);
     return(new object[] {
         retVal
     });
 }
Exemple #3
0
 public void SaveApplicationUserAsync(IndoorWorx.Infrastructure.Models.ApplicationUser user, object userState)
 {
     if ((this.onBeginSaveApplicationUserDelegate == null))
     {
         this.onBeginSaveApplicationUserDelegate = new BeginOperationDelegate(this.OnBeginSaveApplicationUser);
     }
     if ((this.onEndSaveApplicationUserDelegate == null))
     {
         this.onEndSaveApplicationUserDelegate = new EndOperationDelegate(this.OnEndSaveApplicationUser);
     }
     if ((this.onSaveApplicationUserCompletedDelegate == null))
     {
         this.onSaveApplicationUserCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnSaveApplicationUserCompleted);
     }
     base.InvokeAsync(this.onBeginSaveApplicationUserDelegate, new object[] {
         user
     }, this.onEndSaveApplicationUserDelegate, this.onSaveApplicationUserCompletedDelegate, userState);
 }
Exemple #4
0
 public IndoorWorx.Infrastructure.Models.ApplicationUser EndRetrieveApplicationUser(System.IAsyncResult result)
 {
     object[] _args = new object[0];
     IndoorWorx.Infrastructure.Models.ApplicationUser _result = ((IndoorWorx.Infrastructure.Models.ApplicationUser)(base.EndInvoke("RetrieveApplicationUser", _args, result)));
     return(_result);
 }
Exemple #5
0
 public void SaveApplicationUserAsync(IndoorWorx.Infrastructure.Models.ApplicationUser user)
 {
     this.SaveApplicationUserAsync(user, null);
 }
Exemple #6
0
 private System.IAsyncResult OnBeginSaveApplicationUser(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     IndoorWorx.Infrastructure.Models.ApplicationUser user = ((IndoorWorx.Infrastructure.Models.ApplicationUser)(inValues[0]));
     return(((IndoorWorx.Library.ApplicationUserServiceReference.IApplicationUserService)(this)).BeginSaveApplicationUser(user, callback, asyncState));
 }
Exemple #7
0
 System.IAsyncResult IndoorWorx.Library.ApplicationUserServiceReference.IApplicationUserService.BeginSaveApplicationUser(IndoorWorx.Infrastructure.Models.ApplicationUser user, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginSaveApplicationUser(user, callback, asyncState));
 }