コード例 #1
0
ファイル: Reference.cs プロジェクト: rickeygalloway/Test
 /// <remarks/>
 public void UpdateCustomerExclusionsAsync(int customerId, ArticleIdentifier[] newExclusions) {
     this.UpdateCustomerExclusionsAsync(customerId, newExclusions, null);
 }
コード例 #2
0
ファイル: Reference.cs プロジェクト: rickeygalloway/Test
 /// <remarks/>
 public void UpdateCustomerExclusionsAsync(int customerId, ArticleIdentifier[] newExclusions, object userState) {
     if ((this.UpdateCustomerExclusionsOperationCompleted == null)) {
         this.UpdateCustomerExclusionsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateCustomerExclusionsOperationCompleted);
     }
     this.InvokeAsync("UpdateCustomerExclusions", new object[] {
                 customerId,
                 newExclusions}, this.UpdateCustomerExclusionsOperationCompleted, userState);
 }
コード例 #3
0
ファイル: Reference.cs プロジェクト: rickeygalloway/Test
 public void UpdateCustomerExclusions(int customerId, ArticleIdentifier[] newExclusions) {
     this.Invoke("UpdateCustomerExclusions", new object[] {
                 customerId,
                 newExclusions});
 }