/// <remarks/> public void UpdateCustomerShippingAddressAsync(MerchantAuthenticationType merchantAuthentication, long customerProfileId, CustomerAddressExType address) { this.UpdateCustomerShippingAddressAsync(merchantAuthentication, customerProfileId, address, null); }
/// <remarks/> public void UpdateCustomerShippingAddressAsync(MerchantAuthenticationType merchantAuthentication, long customerProfileId, CustomerAddressExType address, object userState) { if ((this.UpdateCustomerShippingAddressOperationCompleted == null)) { this.UpdateCustomerShippingAddressOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateCustomerShippingAddressOperationCompleted); } this.InvokeAsync("UpdateCustomerShippingAddress", new object[] { merchantAuthentication, customerProfileId, address}, this.UpdateCustomerShippingAddressOperationCompleted, userState); }
public UpdateCustomerShippingAddressResponseType UpdateCustomerShippingAddress(MerchantAuthenticationType merchantAuthentication, long customerProfileId, CustomerAddressExType address) { object[] results = this.Invoke("UpdateCustomerShippingAddress", new object[] { merchantAuthentication, customerProfileId, address}); return ((UpdateCustomerShippingAddressResponseType)(results[0])); }