Example #1
0
 /// <remarks/>
 public void depositFromPaymentCardAsync(DepositFromPaymentCardReq request) {
     this.depositFromPaymentCardAsync(request, null);
 }
Example #2
0
 /// <remarks/>
 public void depositFromPaymentCardAsync(DepositFromPaymentCardReq request, object userState) {
     if ((this.depositFromPaymentCardOperationCompleted == null)) {
         this.depositFromPaymentCardOperationCompleted = new System.Threading.SendOrPostCallback(this.OndepositFromPaymentCardOperationCompleted);
     }
     this.InvokeAsync("depositFromPaymentCard", new object[] {
                 request}, this.depositFromPaymentCardOperationCompleted, userState);
 }
Example #3
0
 public DepositFromPaymentCardResp depositFromPaymentCard(DepositFromPaymentCardReq request) {
     object[] results = this.Invoke("depositFromPaymentCard", new object[] {
                 request});
     return ((DepositFromPaymentCardResp)(results[0]));
 }