Example #1
0
 /// <remarks/>
 public void UpdateCustomerPaymentProfileAsync(MerchantAuthenticationType merchantAuthentication, long customerProfileId, CustomerPaymentProfileExType paymentProfile, ValidationModeEnum validationMode) {
     this.UpdateCustomerPaymentProfileAsync(merchantAuthentication, customerProfileId, paymentProfile, validationMode, null);
 }
Example #2
0
 /// <remarks/>
 public void UpdateCustomerPaymentProfileAsync(MerchantAuthenticationType merchantAuthentication, long customerProfileId, CustomerPaymentProfileExType paymentProfile, ValidationModeEnum validationMode, object userState) {
     if ((this.UpdateCustomerPaymentProfileOperationCompleted == null)) {
         this.UpdateCustomerPaymentProfileOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateCustomerPaymentProfileOperationCompleted);
     }
     this.InvokeAsync("UpdateCustomerPaymentProfile", new object[] {
                 merchantAuthentication,
                 customerProfileId,
                 paymentProfile,
                 validationMode}, this.UpdateCustomerPaymentProfileOperationCompleted, userState);
 }
Example #3
0
 public UpdateCustomerPaymentProfileResponseType UpdateCustomerPaymentProfile(MerchantAuthenticationType merchantAuthentication, long customerProfileId, CustomerPaymentProfileExType paymentProfile, ValidationModeEnum validationMode) {
     object[] results = this.Invoke("UpdateCustomerPaymentProfile", new object[] {
                 merchantAuthentication,
                 customerProfileId,
                 paymentProfile,
                 validationMode});
     return ((UpdateCustomerPaymentProfileResponseType)(results[0]));
 }