示例#1
0
 /// <remarks/>
 public void UpdateCustomerProfileAsync(MerchantAuthenticationType merchantAuthentication, CustomerProfileExType profile) {
     this.UpdateCustomerProfileAsync(merchantAuthentication, profile, null);
 }
示例#2
0
 /// <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);
 }
示例#3
0
 public UpdateCustomerProfileResponseType UpdateCustomerProfile(MerchantAuthenticationType merchantAuthentication, CustomerProfileExType profile) {
     object[] results = this.Invoke("UpdateCustomerProfile", new object[] {
                 merchantAuthentication,
                 profile});
     return ((UpdateCustomerProfileResponseType)(results[0]));
 }