Exemplo n.º 1
0
 /// <remarks/>
 public void UpdateCustomerShippingAddressAsync(MerchantAuthenticationType merchantAuthentication, long customerProfileId, CustomerAddressExType address) {
     this.UpdateCustomerShippingAddressAsync(merchantAuthentication, customerProfileId, address, null);
 }
Exemplo n.º 2
0
 /// <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);
 }
Exemplo n.º 3
0
 public UpdateCustomerShippingAddressResponseType UpdateCustomerShippingAddress(MerchantAuthenticationType merchantAuthentication, long customerProfileId, CustomerAddressExType address) {
     object[] results = this.Invoke("UpdateCustomerShippingAddress", new object[] {
                 merchantAuthentication,
                 customerProfileId,
                 address});
     return ((UpdateCustomerShippingAddressResponseType)(results[0]));
 }