/// <remarks/> public void UpdateCustomerProfileAsync(MerchantAuthenticationType merchantAuthentication, CustomerProfileExType profile) { this.UpdateCustomerProfileAsync(merchantAuthentication, profile, null); }
/// <remarks/> public void UpdateCustomerProfileAsync(MerchantAuthenticationType merchantAuthentication, CustomerProfileExType profile, object userState) { if ((this.UpdateCustomerProfileOperationCompleted == null)) { this.UpdateCustomerProfileOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateCustomerProfileOperationCompleted); } this.InvokeAsync("UpdateCustomerProfile", new object[] { merchantAuthentication, profile}, this.UpdateCustomerProfileOperationCompleted, userState); }
public UpdateCustomerProfileResponseType UpdateCustomerProfile(MerchantAuthenticationType merchantAuthentication, CustomerProfileExType profile) { object[] results = this.Invoke("UpdateCustomerProfile", new object[] { merchantAuthentication, profile}); return ((UpdateCustomerProfileResponseType)(results[0])); }