Exemple #1
0
        private System.IAsyncResult OnBeginUpdateInquiry(object[] inValues, System.AsyncCallback callback, object asyncState)
        {
            string random = ((string)(inValues[0]));
            int    type   = ((int)(inValues[1]));
            long   no     = ((long)(inValues[2]));

            SlvHanbaiClient.svcInquiry.EntityInquiry entity = ((SlvHanbaiClient.svcInquiry.EntityInquiry)(inValues[3]));
            return(((SlvHanbaiClient.svcInquiry.svcInquiry)(this)).BeginUpdateInquiry(random, type, no, entity, callback, asyncState));
        }
Exemple #2
0
 public System.IAsyncResult BeginUpdateInquiry(string random, int type, long no, SlvHanbaiClient.svcInquiry.EntityInquiry entity, System.AsyncCallback callback, object asyncState)
 {
     object[] _args = new object[4];
     _args[0] = random;
     _args[1] = type;
     _args[2] = no;
     _args[3] = entity;
     System.IAsyncResult _result = base.BeginInvoke("UpdateInquiry", _args, callback, asyncState);
     return(_result);
 }
Exemple #3
0
 public void UpdateInquiryAsync(string random, int type, long no, SlvHanbaiClient.svcInquiry.EntityInquiry entity, object userState)
 {
     if ((this.onBeginUpdateInquiryDelegate == null))
     {
         this.onBeginUpdateInquiryDelegate = new BeginOperationDelegate(this.OnBeginUpdateInquiry);
     }
     if ((this.onEndUpdateInquiryDelegate == null))
     {
         this.onEndUpdateInquiryDelegate = new EndOperationDelegate(this.OnEndUpdateInquiry);
     }
     if ((this.onUpdateInquiryCompletedDelegate == null))
     {
         this.onUpdateInquiryCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnUpdateInquiryCompleted);
     }
     base.InvokeAsync(this.onBeginUpdateInquiryDelegate, new object[] {
         random,
         type,
         no,
         entity
     }, this.onEndUpdateInquiryDelegate, this.onUpdateInquiryCompletedDelegate, userState);
 }
Exemple #4
0
 public void UpdateInquiryAsync(string random, int type, long no, SlvHanbaiClient.svcInquiry.EntityInquiry entity)
 {
     this.UpdateInquiryAsync(random, type, no, entity, null);
 }
Exemple #5
0
 System.IAsyncResult SlvHanbaiClient.svcInquiry.svcInquiry.BeginUpdateInquiry(string random, int type, long no, SlvHanbaiClient.svcInquiry.EntityInquiry entity, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginUpdateInquiry(random, type, no, entity, callback, asyncState));
 }