Пример #1
0
 /// <remarks/>
 public void CreateCustomerProfileAsync(MerchantAuthenticationType merchantAuthentication, CustomerProfileType profile, ValidationModeEnum validationMode) {
     this.CreateCustomerProfileAsync(merchantAuthentication, profile, validationMode, null);
 }
Пример #2
0
 /// <remarks/>
 public void CreateCustomerProfileAsync(MerchantAuthenticationType merchantAuthentication, CustomerProfileType profile, ValidationModeEnum validationMode, object userState) {
     if ((this.CreateCustomerProfileOperationCompleted == null)) {
         this.CreateCustomerProfileOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCreateCustomerProfileOperationCompleted);
     }
     this.InvokeAsync("CreateCustomerProfile", new object[] {
                 merchantAuthentication,
                 profile,
                 validationMode}, this.CreateCustomerProfileOperationCompleted, userState);
 }
Пример #3
0
 public CreateCustomerProfileResponseType CreateCustomerProfile(MerchantAuthenticationType merchantAuthentication, CustomerProfileType profile, ValidationModeEnum validationMode) {
     object[] results = this.Invoke("CreateCustomerProfile", new object[] {
                 merchantAuthentication,
                 profile,
                 validationMode});
     return ((CreateCustomerProfileResponseType)(results[0]));
 }