Example #1
0
 /// <remarks/>
 public void CreateCustomerShippingAddressAsync(MerchantAuthenticationType merchantAuthentication, long customerProfileId, CustomerAddressType address) {
     this.CreateCustomerShippingAddressAsync(merchantAuthentication, customerProfileId, address, null);
 }
Example #2
0
 /// <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);
 }
Example #3
0
 public CreateCustomerShippingAddressResponseType CreateCustomerShippingAddress(MerchantAuthenticationType merchantAuthentication, long customerProfileId, CustomerAddressType address) {
     object[] results = this.Invoke("CreateCustomerShippingAddress", new object[] {
                 merchantAuthentication,
                 customerProfileId,
                 address});
     return ((CreateCustomerShippingAddressResponseType)(results[0]));
 }