/// <remarks/>
 public void SearchCustomerProfilesAsync(SearchCustomerProfilesRequestData request) {
     this.SearchCustomerProfilesAsync(request, null);
 }
 /// <remarks/>
 public void SearchCustomerProfilesAsync(SearchCustomerProfilesRequestData request, object userState) {
     if ((this.SearchCustomerProfilesOperationCompleted == null)) {
         this.SearchCustomerProfilesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnSearchCustomerProfilesOperationCompleted);
     }
     this.InvokeAsync("SearchCustomerProfiles", new object[] {
                 request}, this.SearchCustomerProfilesOperationCompleted, userState);
 }
 public SearchCustomerProfilesResponseData SearchCustomerProfiles(SearchCustomerProfilesRequestData request) {
     object[] results = this.Invoke("SearchCustomerProfiles", new object[] {
                 request});
     return ((SearchCustomerProfilesResponseData)(results[0]));
 }