示例#1
0
 /// <remarks/>
 public void getStatesByListAsync(stid[] request, authInfo authInfo) {
     this.getStatesByListAsync(request, authInfo, null);
 }
示例#2
0
 /// <remarks/>
 public void getStatesByListAsync(stid[] request, authInfo authInfo, object userState) {
     if ((this.getStatesByListOperationCompleted == null)) {
         this.getStatesByListOperationCompleted = new System.Threading.SendOrPostCallback(this.OngetStatesByListOperationCompleted);
     }
     this.InvokeAsync("getStatesByList", new object[] {
                 request,
                 authInfo}, this.getStatesByListOperationCompleted, userState);
 }
示例#3
0
 public State[] getStatesByList(stid[] request, authInfo authInfo) {
     object[] results = this.Invoke("getStatesByList", new object[] {
                 request,
                 authInfo});
     return ((State[])(results[0]));
 }