Example #1
0
 /// <remarks/>
 public void withdrawToPaymentCardAsync(WithdrawToPaymentCardReq request) {
     this.withdrawToPaymentCardAsync(request, null);
 }
Example #2
0
 /// <remarks/>
 public void withdrawToPaymentCardAsync(WithdrawToPaymentCardReq request, object userState) {
     if ((this.withdrawToPaymentCardOperationCompleted == null)) {
         this.withdrawToPaymentCardOperationCompleted = new System.Threading.SendOrPostCallback(this.OnwithdrawToPaymentCardOperationCompleted);
     }
     this.InvokeAsync("withdrawToPaymentCard", new object[] {
                 request}, this.withdrawToPaymentCardOperationCompleted, userState);
 }
Example #3
0
 public WithdrawToPaymentCardResp withdrawToPaymentCard(WithdrawToPaymentCardReq request) {
     object[] results = this.Invoke("withdrawToPaymentCard", new object[] {
                 request});
     return ((WithdrawToPaymentCardResp)(results[0]));
 }