コード例 #1
0
ファイル: Reference.cs プロジェクト: JoeGilkey/RadioLog
 /// <remarks/>
 public void getCountiesByListAsync(ctid[] request, authInfo authInfo) {
     this.getCountiesByListAsync(request, authInfo, null);
 }
コード例 #2
0
ファイル: Reference.cs プロジェクト: JoeGilkey/RadioLog
 /// <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);
 }
コード例 #3
0
ファイル: Reference.cs プロジェクト: JoeGilkey/RadioLog
 public County[] getCountiesByList(ctid[] request, authInfo authInfo) {
     object[] results = this.Invoke("getCountiesByList", new object[] {
                 request,
                 authInfo});
     return ((County[])(results[0]));
 }