I've done it, so this is help to all.

AppsService service = new AppsService(<domain>, <adminemail>,
<adminpassword>);
            UserFeed feed = service.RetrieveAllUsers();

            List<UserEntry> users = new List<UserEntry>();

            foreach (UserEntry user in feed.Entries)
                users.Add(user);

Now you have list of users of type UserEntry!

That is of me :)

On 5 list, 12:28, Michael79 <[EMAIL PROTECTED]> wrote:
> I have application that updates itself from APPS but I cannot normally
> use UserFeed because it has not method or known way to be converted to
> UserEntry array or something that can be usable. Now I use
> RetrieveUser and that is time consuming.
>
> The same problem exists with EmailListFeed and NicknameFeed.
>
> Am I missing something?
>
> I use .NET.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Apps APIs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-apps-apis?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to