Example #1
0
 private object[] OnEndGetReportSetting(System.IAsyncResult result)
 {
     SlvHanbaiClient.svcReport.EntityReportSetting retVal = ((SlvHanbaiClient.svcReport.svcReport)(this)).EndGetReportSetting(result);
     return(new object[] {
         retVal
     });
 }
Example #2
0
        private System.IAsyncResult OnBeginUpdateReportSetting(object[] inValues, System.AsyncCallback callback, object asyncState)
        {
            string random = ((string)(inValues[0]));
            int    type   = ((int)(inValues[1]));
            string Id     = ((string)(inValues[2]));

            SlvHanbaiClient.svcReport.EntityReportSetting entity = ((SlvHanbaiClient.svcReport.EntityReportSetting)(inValues[3]));
            return(((SlvHanbaiClient.svcReport.svcReport)(this)).BeginUpdateReportSetting(random, type, Id, entity, callback, asyncState));
        }
Example #3
0
 public System.IAsyncResult BeginUpdateReportSetting(string random, int type, string Id, SlvHanbaiClient.svcReport.EntityReportSetting entity, System.AsyncCallback callback, object asyncState)
 {
     object[] _args = new object[4];
     _args[0] = random;
     _args[1] = type;
     _args[2] = Id;
     _args[3] = entity;
     System.IAsyncResult _result = base.BeginInvoke("UpdateReportSetting", _args, callback, asyncState);
     return(_result);
 }
Example #4
0
 public void UpdateReportSettingAsync(string random, int type, string Id, SlvHanbaiClient.svcReport.EntityReportSetting entity, object userState)
 {
     if ((this.onBeginUpdateReportSettingDelegate == null))
     {
         this.onBeginUpdateReportSettingDelegate = new BeginOperationDelegate(this.OnBeginUpdateReportSetting);
     }
     if ((this.onEndUpdateReportSettingDelegate == null))
     {
         this.onEndUpdateReportSettingDelegate = new EndOperationDelegate(this.OnEndUpdateReportSetting);
     }
     if ((this.onUpdateReportSettingCompletedDelegate == null))
     {
         this.onUpdateReportSettingCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnUpdateReportSettingCompleted);
     }
     base.InvokeAsync(this.onBeginUpdateReportSettingDelegate, new object[] {
         random,
         type,
         Id,
         entity
     }, this.onEndUpdateReportSettingDelegate, this.onUpdateReportSettingCompletedDelegate, userState);
 }
Example #5
0
 public SlvHanbaiClient.svcReport.EntityReportSetting EndGetReportSetting(System.IAsyncResult result)
 {
     object[] _args = new object[0];
     SlvHanbaiClient.svcReport.EntityReportSetting _result = ((SlvHanbaiClient.svcReport.EntityReportSetting)(base.EndInvoke("GetReportSetting", _args, result)));
     return(_result);
 }
Example #6
0
 public void UpdateReportSettingAsync(string random, int type, string Id, SlvHanbaiClient.svcReport.EntityReportSetting entity)
 {
     this.UpdateReportSettingAsync(random, type, Id, entity, null);
 }
Example #7
0
 System.IAsyncResult SlvHanbaiClient.svcReport.svcReport.BeginUpdateReportSetting(string random, int type, string Id, SlvHanbaiClient.svcReport.EntityReportSetting entity, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginUpdateReportSetting(random, type, Id, entity, callback, asyncState));
 }