Example #1
0
 public void SetTestStartAsync(动力油耗.WeightWCFServer.InputDataType carinfo, object userState)
 {
     if ((this.onBeginSetTestStartDelegate == null))
     {
         this.onBeginSetTestStartDelegate = new BeginOperationDelegate(this.OnBeginSetTestStart);
     }
     if ((this.onEndSetTestStartDelegate == null))
     {
         this.onEndSetTestStartDelegate = new EndOperationDelegate(this.OnEndSetTestStart);
     }
     if ((this.onSetTestStartCompletedDelegate == null))
     {
         this.onSetTestStartCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnSetTestStartCompleted);
     }
     base.InvokeAsync(this.onBeginSetTestStartDelegate, new object[] {
         carinfo
     }, this.onEndSetTestStartDelegate, this.onSetTestStartCompletedDelegate, userState);
 }
Example #2
0
 public void SetTestStartAsync(动力油耗.WeightWCFServer.InputDataType carinfo)
 {
     this.SetTestStartAsync(carinfo, null);
 }
Example #3
0
 public System.IAsyncResult BeginSetTestStart(动力油耗.WeightWCFServer.InputDataType carinfo, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginSetTestStart(carinfo, callback, asyncState));
 }
Example #4
0
 private System.IAsyncResult OnBeginSetTestStart(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     动力油耗.WeightWCFServer.InputDataType carinfo = ((动力油耗.WeightWCFServer.InputDataType)(inValues[0]));
     return(this.BeginSetTestStart(carinfo, callback, asyncState));
 }
Example #5
0
 public 动力油耗.WeightWCFServer.BackDataTpye SetTestStart(动力油耗.WeightWCFServer.InputDataType carinfo)
 {
     return(base.Channel.SetTestStart(carinfo));
 }