Example #1
0
        private System.IAsyncResult OnBeginUpdateTag(object[] inValues, System.AsyncCallback callback, object asyncState)
        {
            CloudyBank.PortableServices.Tags.TagDto tag = ((CloudyBank.PortableServices.Tags.TagDto)(inValues[0]));
            int customerID = ((int)(inValues[1]));

            return(((CloudyBank.PortableServices.Tags.WCFTagService)(this)).BeginUpdateTag(tag, customerID, callback, asyncState));
        }
Example #2
0
 public System.IAsyncResult BeginUpdateTag(CloudyBank.PortableServices.Tags.TagDto tag, int customerID, System.AsyncCallback callback, object asyncState)
 {
     object[] _args = new object[2];
     _args[0] = tag;
     _args[1] = customerID;
     System.IAsyncResult _result = base.BeginInvoke("UpdateTag", _args, callback, asyncState);
     return(_result);
 }
Example #3
0
 public void UpdateTagAsync(CloudyBank.PortableServices.Tags.TagDto tag, int customerID, object userState)
 {
     if ((this.onBeginUpdateTagDelegate == null))
     {
         this.onBeginUpdateTagDelegate = new BeginOperationDelegate(this.OnBeginUpdateTag);
     }
     if ((this.onEndUpdateTagDelegate == null))
     {
         this.onEndUpdateTagDelegate = new EndOperationDelegate(this.OnEndUpdateTag);
     }
     if ((this.onUpdateTagCompletedDelegate == null))
     {
         this.onUpdateTagCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnUpdateTagCompleted);
     }
     base.InvokeAsync(this.onBeginUpdateTagDelegate, new object[] {
         tag,
         customerID
     }, this.onEndUpdateTagDelegate, this.onUpdateTagCompletedDelegate, userState);
 }
Example #4
0
 public void UpdateTagAsync(CloudyBank.PortableServices.Tags.TagDto tag, int customerID)
 {
     this.UpdateTagAsync(tag, customerID, null);
 }
Example #5
0
 System.IAsyncResult CloudyBank.PortableServices.Tags.WCFTagService.BeginUpdateTag(CloudyBank.PortableServices.Tags.TagDto tag, int customerID, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginUpdateTag(tag, customerID, callback, asyncState));
 }
Example #6
0
 public void CreateTagAsync(int customerID, CloudyBank.PortableServices.Tags.TagDto tag)
 {
     this.CreateTagAsync(customerID, tag, null);
 }