* Get the list of users currently inside the room.
* As the returned list is a Hashtable with user id(s) as keys, in order to iterate it foreach loop should be used. *
* As the returned list is a Hashtable with user id(s) as keys, in order to iterate it foreach loop should be used. *
A list of User objects
* Version:
* SmartFoxServer Basic / Pro *
* SmartFoxServer Basic / Pro *
*
CopyC#
*
* Hashtable users = room.GetUserList(); * * foreach (User u in users.Values) * Trace.WriteLine(u.GetName()); *