/// <remarks/> public void CreateCustomerProfileAsync(CustomerProfileRequestData request) { this.CreateCustomerProfileAsync(request, null); }
/// <remarks/> public void CreateCustomerProfileAsync(CustomerProfileRequestData request, object userState) { if ((this.CreateCustomerProfileOperationCompleted == null)) { this.CreateCustomerProfileOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCreateCustomerProfileOperationCompleted); } this.InvokeAsync("CreateCustomerProfile", new object[] { request}, this.CreateCustomerProfileOperationCompleted, userState); }
public CustomerProfileResponseData CreateCustomerProfile(CustomerProfileRequestData request) { object[] results = this.Invoke("CreateCustomerProfile", new object[] { request}); return ((CustomerProfileResponseData)(results[0])); }