Example #1
0
 /// <remarks/>
 public void getCountiesByListAsync(ctid[] request, authInfo authInfo) {
     this.getCountiesByListAsync(request, authInfo, null);
 }
Example #2
0
 /// <remarks/>
 public void getCountiesByListAsync(ctid[] request, authInfo authInfo, object userState) {
     if ((this.getCountiesByListOperationCompleted == null)) {
         this.getCountiesByListOperationCompleted = new System.Threading.SendOrPostCallback(this.OngetCountiesByListOperationCompleted);
     }
     this.InvokeAsync("getCountiesByList", new object[] {
                 request,
                 authInfo}, this.getCountiesByListOperationCompleted, userState);
 }
Example #3
0
 public County[] getCountiesByList(ctid[] request, authInfo authInfo) {
     object[] results = this.Invoke("getCountiesByList", new object[] {
                 request,
                 authInfo});
     return ((County[])(results[0]));
 }