Example #1
0
 /// <remarks/>
 public void getPaymentCardAsync(GetPaymentCardReq request) {
     this.getPaymentCardAsync(request, null);
 }
Example #2
0
 /// <remarks/>
 public void getPaymentCardAsync(GetPaymentCardReq request, object userState) {
     if ((this.getPaymentCardOperationCompleted == null)) {
         this.getPaymentCardOperationCompleted = new System.Threading.SendOrPostCallback(this.OngetPaymentCardOperationCompleted);
     }
     this.InvokeAsync("getPaymentCard", new object[] {
                 request}, this.getPaymentCardOperationCompleted, userState);
 }
Example #3
0
 public GetPaymentCardResp getPaymentCard(GetPaymentCardReq request) {
     object[] results = this.Invoke("getPaymentCard", new object[] {
                 request});
     return ((GetPaymentCardResp)(results[0]));
 }