Skip to main content
Version: SDK-5.11.6

OnMatchMakingRoomUserList

public MatchMakingUserListInRoomEventHandler OnMatchMakingRoomUserList;

Argument

ValueTypeDescription
argsMatchMakingGamerInfoListInRoomEventArgsInformation on users in the waiting room

args type names

ValueTypeDescription
ErrInfoErrorCodeError information
ReasonstringError description
UserInfosList <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