/// <remarks/> public void CreateCustomerPaymentProfileAsync(MerchantAuthenticationType merchantAuthentication, long customerProfileId, CustomerPaymentProfileType paymentProfile, ValidationModeEnum validationMode) { this.CreateCustomerPaymentProfileAsync(merchantAuthentication, customerProfileId, paymentProfile, validationMode, null); }
/// <remarks/> public void CreateCustomerPaymentProfileAsync(MerchantAuthenticationType merchantAuthentication, long customerProfileId, CustomerPaymentProfileType paymentProfile, ValidationModeEnum validationMode, object userState) { if ((this.CreateCustomerPaymentProfileOperationCompleted == null)) { this.CreateCustomerPaymentProfileOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCreateCustomerPaymentProfileOperationCompleted); } this.InvokeAsync("CreateCustomerPaymentProfile", new object[] { merchantAuthentication, customerProfileId, paymentProfile, validationMode}, this.CreateCustomerPaymentProfileOperationCompleted, userState); }
public CreateCustomerPaymentProfileResponseType CreateCustomerPaymentProfile(MerchantAuthenticationType merchantAuthentication, long customerProfileId, CustomerPaymentProfileType paymentProfile, ValidationModeEnum validationMode) { object[] results = this.Invoke("CreateCustomerPaymentProfile", new object[] { merchantAuthentication, customerProfileId, paymentProfile, validationMode}); return ((CreateCustomerPaymentProfileResponseType)(results[0])); }