/// <remarks/> public void withdrawToPaymentCardAsync(WithdrawToPaymentCardReq request) { this.withdrawToPaymentCardAsync(request, null); }
/// <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); }
public WithdrawToPaymentCardResp withdrawToPaymentCard(WithdrawToPaymentCardReq request) { object[] results = this.Invoke("withdrawToPaymentCard", new object[] { request}); return ((WithdrawToPaymentCardResp)(results[0])); }