public void DoServiceAsync(PhysicsExprHelper.Interop.BizService.DoServiceRequest request, object userState)
 {
     if ((this.onBeginDoServiceDelegate == null))
     {
         this.onBeginDoServiceDelegate = new BeginOperationDelegate(this.OnBeginDoService);
     }
     if ((this.onEndDoServiceDelegate == null))
     {
         this.onEndDoServiceDelegate = new EndOperationDelegate(this.OnEndDoService);
     }
     if ((this.onDoServiceCompletedDelegate == null))
     {
         this.onDoServiceCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnDoServiceCompleted);
     }
     base.InvokeAsync(this.onBeginDoServiceDelegate, new object[] {
         request
     }, this.onEndDoServiceDelegate, this.onDoServiceCompletedDelegate, userState);
 }
 public void DoServiceAsync(PhysicsExprHelper.Interop.BizService.DoServiceRequest request)
 {
     this.DoServiceAsync(request, null);
 }
 public System.IAsyncResult BeginDoService(PhysicsExprHelper.Interop.BizService.DoServiceRequest request, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginDoService(request, callback, asyncState));
 }
 private System.IAsyncResult OnBeginDoService(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     PhysicsExprHelper.Interop.BizService.DoServiceRequest request = ((PhysicsExprHelper.Interop.BizService.DoServiceRequest)(inValues[0]));
     return(this.BeginDoService(request, callback, asyncState));
 }
 public PhysicsExprHelper.Interop.BizService.DoServiceResponse DoService(PhysicsExprHelper.Interop.BizService.DoServiceRequest request)
 {
     return(base.Channel.DoService(request));
 }