Exemplo n.º 1
0
 public UserInfo[] GetAllUsers()
 {
     assertConnected();
     try
     {
         string userListXml = wsClient.GetAllUsers(accessToken());
         return(UserInfo.ParseUsersXml(userListXml));
     }
     catch (Exception ex)
     {
         throw TranslateException(ex);
     }
 }