Chat SDK for Unity and Windows v1.2.0
|
Properties | |
string | RoomId [get, set] |
string | Name [get, set] |
string | Description [get, set] |
string | Announcement [get, set] |
int | MemberCount [get, set] |
List< string > | AdminList [get, set] |
List< string > | MemberList [get, set] |
List< string > | BlockList [get, set] |
List< string > | MuteList [get, set] |
int | MaxUsers [get, set] |
string | Owner [get, set] |
bool | IsAllMemberMuted [get, set] |
RoomPermissionType | PermissionType [get, set] |
The chat room class, which defines chat room information.
|
getset |
The chat room ID.
|
getset |
The chat room name.
|
getset |
The chat room description.
|
getset |
The chat room announcement.
|
getset |
The number of online members.
|
getset |
The admin list of the chat room.
|
getset |
The member list of the chat room.
To get the member list of the chat room from the server, you can call {@link IRoomManager#FetchRoomMembers(String, String, int, ValueCallBack)}
.
|
getset |
The block list of the chat room.
To get the block list of the chat room from the server, you can call {@link IRoomManager#FetchRoomBlockList(String, int, int, ValueCallBack)}
.
|
getset |
The mute list of the chat room.
To get the mute list of the chat room from the server, you can call {@link IRoomManager#FetchRoomMuteList(String, int, int, ValueCallBack)}
.
|
getset |
The maximum number of members allowed in the chat room, which is determined during chat room creation.
To get the latest data, you can call {@link IRoomManager#FetchRoomInfoFromServer(String,ValueCallBack)}
to get details of a chat room from the server.
|
getset |
The chat room owner.
To get the latest data, you can call {@link IRoomManager#FetchRoomInfoFromServer(String,ValueCallBack)}
to get details of a chat room from the server.
|
getset |
Whether all members are muted.
true
: Yes. false
: No.Note
|
getset |
The role of the current user in the chat room.