OnMatchMakingRoomUserList
public MatchMakingUserListInRoomEventHandler OnMatchMakingRoomUserList;
Argument
| Value | Type | Description |
|---|---|---|
| args | MatchMakingGamerInfoListInRoomEventArgs | Information on users in the waiting room |
args type names
| Value | Type | Description |
|---|---|---|
| ErrInfo | ErrorCode | Error information |
| Reason | string | Error description |
| UserInfos | List <MatchMakingUserInfo> | List of users in the waiting room (including information on the entered users) |
Description
This event handler is called when an invited user enters the waiting room.
- It is called only to users who entered the waiting room.
In order for an event to be called, the message sending/receiving method must be called.
Example
Backend.Match.OnMatchMakingRoomUserList = (MatchMakingGamerInfoListInRoomEventArgs args) => {
// TODO
};
Argument cases
When an invited user enters the waiting room
ErrInfo : ErrorCode.Success
UserInfos : information on all users in the waiting room