Example #1
0
 /// <remarks/>
 public void getAccountAsync(getAccountRequest getAccountRequest) {
     this.getAccountAsync(getAccountRequest, null);
 }
Example #2
0
 /// <remarks/>
 public void getAccountAsync(getAccountRequest getAccountRequest, object userState) {
     if ((this.getAccountOperationCompleted == null)) {
         this.getAccountOperationCompleted = new System.Threading.SendOrPostCallback(this.OngetAccountOperationCompleted);
     }
     this.InvokeAsync("getAccount", new object[] {
                 getAccountRequest}, this.getAccountOperationCompleted, userState);
 }
Example #3
0
 /// <summary>
 /// Returns a the description of some account
 /// </summary>
 /// <param name="id"></param>
 /// <returns></returns>
 public account GetAccount(long id)
 {
     var port = Util.Port();
     WipService.getAccountRequest acreq = new getAccountRequest();
     acreq.accountId = id;
     return port.getAccount(acreq).account;
 }