OnMatchMakingRoomInviteResponse
public MatchMakingResponseInviteEventHandler OnMatchMakingRoomInviteResponse;
Argument
Value | Type | Description |
---|---|---|
args | MatchMakingInteractionEventArgs | Result of invitation acceptance/decline |
args type names
Value | Type | Description |
---|---|---|
ErrInfo | ErrorCode | Error information |
Reason | string | Error description |
Description
This event is called when an invitation sent by another user is accepted.
- It is called only to the user who accepts/declines the invitation.
In order for an event to be called, the message sending/receiving method must be called.
Example
Backend.Match.OnMatchMakingRoomInviteResponse = (MatchMakingInteractionEventArgs args) => {
// TODO
};
Argument cases
Invitation is accepted/declined
ErrInfo : ErrorCode.Success