Example #1
0
 /// <remarks/>
 public void PageNameUpdateListAsync(int pageID, FindItItem[] items) {
     this.PageNameUpdateListAsync(pageID, items, null);
 }
Example #2
0
 /// <remarks/>
 public void PageNameUpdateListAsync(int pageID, FindItItem[] items, object userState) {
     if ((this.PageNameUpdateListOperationCompleted == null)) {
         this.PageNameUpdateListOperationCompleted = new System.Threading.SendOrPostCallback(this.OnPageNameUpdateListOperationCompleted);
     }
     this.InvokeAsync("PageNameUpdateList", new object[] {
                 pageID,
                 items}, this.PageNameUpdateListOperationCompleted, userState);
 }
Example #3
0
 public int[] PageNameUpdateList(int pageID, FindItItem[] items) {
     object[] results = this.Invoke("PageNameUpdateList", new object[] {
                 pageID,
                 items});
     return ((int[])(results[0]));
 }