示例#1
0
 public string GetTermsByLabel(string label, int lcid, StringMatchOption matchOption, int resultCollectionSize, string termIds, bool addIfNotFound)
 {
     object[] results = this.Invoke("GetTermsByLabel", new object[] {
         label,
         lcid,
         matchOption,
         resultCollectionSize,
         termIds,
         addIfNotFound
     });
     return((string)(results[0]));
 }
示例#2
0
 /// <remarks/>
 public void GetTermsByLabelAsync(string label, int lcid, StringMatchOption matchOption, int resultCollectionSize, string termIds, bool addIfNotFound, object userState)
 {
     if ((this.GetTermsByLabelOperationCompleted == null))
     {
         this.GetTermsByLabelOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetTermsByLabelOperationCompleted);
     }
     this.InvokeAsync("GetTermsByLabel", new object[] {
         label,
         lcid,
         matchOption,
         resultCollectionSize,
         termIds,
         addIfNotFound
     }, this.GetTermsByLabelOperationCompleted, userState);
 }
示例#3
0
 /// <remarks/>
 public void GetTermsByLabelAsync(string label, int lcid, StringMatchOption matchOption, int resultCollectionSize, string termIds, bool addIfNotFound)
 {
     this.GetTermsByLabelAsync(label, lcid, matchOption, resultCollectionSize, termIds, addIfNotFound, null);
 }
 /// <remarks/>
 public void GetTermsByLabelAsync(string label, int lcid, StringMatchOption matchOption, int resultCollectionSize, string termIds, bool addIfNotFound, object userState) {
     if ((this.GetTermsByLabelOperationCompleted == null)) {
         this.GetTermsByLabelOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetTermsByLabelOperationCompleted);
     }
     this.InvokeAsync("GetTermsByLabel", new object[] {
                 label,
                 lcid,
                 matchOption,
                 resultCollectionSize,
                 termIds,
                 addIfNotFound}, this.GetTermsByLabelOperationCompleted, userState);
 }
 /// <remarks/>
 public void GetTermsByLabelAsync(string label, int lcid, StringMatchOption matchOption, int resultCollectionSize, string termIds, bool addIfNotFound) {
     this.GetTermsByLabelAsync(label, lcid, matchOption, resultCollectionSize, termIds, addIfNotFound, null);
 }
 public string GetTermsByLabel(string label, int lcid, StringMatchOption matchOption, int resultCollectionSize, string termIds, bool addIfNotFound) {
     object[] results = this.Invoke("GetTermsByLabel", new object[] {
                 label,
                 lcid,
                 matchOption,
                 resultCollectionSize,
                 termIds,
                 addIfNotFound});
     return ((string)(results[0]));
 }