/// <remarks/> public void CreateCustomerShippingAddressAsync(MerchantAuthenticationType merchantAuthentication, long customerProfileId, CustomerAddressType address) { this.CreateCustomerShippingAddressAsync(merchantAuthentication, customerProfileId, address, null); }
/// <remarks/> public void CreateCustomerShippingAddressAsync(MerchantAuthenticationType merchantAuthentication, long customerProfileId, CustomerAddressType address, object userState) { if ((this.CreateCustomerShippingAddressOperationCompleted == null)) { this.CreateCustomerShippingAddressOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCreateCustomerShippingAddressOperationCompleted); } this.InvokeAsync("CreateCustomerShippingAddress", new object[] { merchantAuthentication, customerProfileId, address}, this.CreateCustomerShippingAddressOperationCompleted, userState); }
public CreateCustomerShippingAddressResponseType CreateCustomerShippingAddress(MerchantAuthenticationType merchantAuthentication, long customerProfileId, CustomerAddressType address) { object[] results = this.Invoke("CreateCustomerShippingAddress", new object[] { merchantAuthentication, customerProfileId, address}); return ((CreateCustomerShippingAddressResponseType)(results[0])); }