Notifications
Clear all
Topic starter
Hi
i want to load all users from my new user class
my new class name AdminUser()
Thanks
Posted : 04/06/2016 7:13 pm
Use the overload User.Load<T>()
User.Load<AdminUser>(string.Empty, string.Empty, null, false, 1, 10, (AdminUser[] users, int recordsCount, int pagesCount) => { Debug.Log("Users: " + users.Length); });
FRANCESCO CROCETTI @ SKARED CREATIONS
Posted : 05/06/2016 1:16 pm
Romenics reacted
Topic starter
Working fine, Thanks :))
Posted : 05/06/2016 4:19 pm