예제 #1
0
 /// <remarks/>
 public void addDropdownFieldValuesForTableAsync(long cookie, string tablename, string fieldname, CFieldValue[] pValueList) {
     this.addDropdownFieldValuesForTableAsync(cookie, tablename, fieldname, pValueList, null);
 }
예제 #2
0
 /// <remarks/>
 public void addDropdownFieldValuesForTableAsync(long cookie, string tablename, string fieldname, CFieldValue[] pValueList, object userState) {
     if ((this.addDropdownFieldValuesForTableOperationCompleted == null)) {
         this.addDropdownFieldValuesForTableOperationCompleted = new System.Threading.SendOrPostCallback(this.OnaddDropdownFieldValuesForTableOperationCompleted);
     }
     this.InvokeAsync("addDropdownFieldValuesForTable", new object[] {
                 cookie,
                 tablename,
                 fieldname,
                 pValueList}, this.addDropdownFieldValuesForTableOperationCompleted, userState);
 }
예제 #3
0
 public int addDropdownFieldValuesForTable(long cookie, string tablename, string fieldname, CFieldValue[] pValueList) {
     object[] results = this.Invoke("addDropdownFieldValuesForTable", new object[] {
                 cookie,
                 tablename,
                 fieldname,
                 pValueList});
     return ((int)(results[0]));
 }