예제 #1
0
 public void UpdateAsync(WebApplication3.ServiceReference1.UpdateUser u, object userState)
 {
     if ((this.onBeginUpdateDelegate == null))
     {
         this.onBeginUpdateDelegate = new BeginOperationDelegate(this.OnBeginUpdate);
     }
     if ((this.onEndUpdateDelegate == null))
     {
         this.onEndUpdateDelegate = new EndOperationDelegate(this.OnEndUpdate);
     }
     if ((this.onUpdateCompletedDelegate == null))
     {
         this.onUpdateCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnUpdateCompleted);
     }
     base.InvokeAsync(this.onBeginUpdateDelegate, new object[] {
         u
     }, this.onEndUpdateDelegate, this.onUpdateCompletedDelegate, userState);
 }
예제 #2
0
 public void UpdateAsync(WebApplication3.ServiceReference1.UpdateUser u)
 {
     this.UpdateAsync(u, null);
 }
예제 #3
0
 public System.IAsyncResult BeginUpdate(WebApplication3.ServiceReference1.UpdateUser u, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginUpdate(u, callback, asyncState));
 }
예제 #4
0
 private System.IAsyncResult OnBeginUpdate(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     WebApplication3.ServiceReference1.UpdateUser u = ((WebApplication3.ServiceReference1.UpdateUser)(inValues[0]));
     return(this.BeginUpdate(u, callback, asyncState));
 }
예제 #5
0
 public string Update(WebApplication3.ServiceReference1.UpdateUser u)
 {
     return(base.Channel.Update(u));
 }