I started writing a DNN module to see who is in a chat room, ie the names of the members, but I can't seem to be able to figure it out.
I figured out the number of people using the following
Dim cs As ChatSystem = ChatFactory.CreateChatSystem()Dim user As UserIdentityDim al As ArrayList = New ArrayListDim ids() AsInteger = cs.ListRooms()Dim id AsIntegerForEach id In idsDim row As DataRow = cs.GetRoom(id)al.Add(
New RoomInfo(row))NextRepeater1.DataSource = al
Repeater1.DataBind()
But is there available a list of chat identities in a particular room?
regards
Eric