Navigation
API > API/Plugins > API/Plugins/OnlineSubsystem > API/Plugins/OnlineSubsystem/IOnlineTournament
Description
Query a list of participants for a tournament from the perspective of the specified user.
It is valid to request Team IDs or Player IDs from a Team tournament, and it is only valid to request Player IDs from an Individual tournament.
| Name | QueryParticipantList |
| Type | function |
| Header File | /Engine/Plugins/Online/OnlineSubsystem/Source/Public/Interfaces/OnlineTournamentInterface.h |
| Include Path | #include "Interfaces/OnlineTournamentInterface.h" |
void QueryParticipantList
(
const FUniqueNetIdRef UserId,
const FOnlineTournamentIdRef TournamentId,
const FOnlineTournamentParticipantQueryFilter & QueryFilter,
const FOnlineTournamentQueryParticipantListComplete & Delegate
)
Parameters
| Name | Remarks |
|---|---|
| UserId | A User to query Participant IDs as |
| TournamentId | The Tournament ID to get Participant IDs from |
| QueryFilter | Filter to use to query participants. |
| Delegate | A delegate that is called when our match list query is complete |