/// <remarks/>
 public void DeleteCustomerProfileAsync(DeleteCustomerProfileRequestData request) {
     this.DeleteCustomerProfileAsync(request, null);
 }
 /// <remarks/>
 public void DeleteCustomerProfileAsync(DeleteCustomerProfileRequestData request, object userState) {
     if ((this.DeleteCustomerProfileOperationCompleted == null)) {
         this.DeleteCustomerProfileOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteCustomerProfileOperationCompleted);
     }
     this.InvokeAsync("DeleteCustomerProfile", new object[] {
                 request}, this.DeleteCustomerProfileOperationCompleted, userState);
 }
 public DeleteCustomerProfileResponseData DeleteCustomerProfile(DeleteCustomerProfileRequestData request) {
     object[] results = this.Invoke("DeleteCustomerProfile", new object[] {
                 request});
     return ((DeleteCustomerProfileResponseData)(results[0]));
 }