> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# PFMatchmakingMatchDetails

> 已完成的 PlayFab 多人游戏匹配票证返回的详细匹配信息，包括匹配到的成员、团队分配和服务器详细信息。

已完成的票证找到的最终匹配信息。

## 语法

```cpp theme={null}
struct PFMatchmakingMatchDetails {  
    const char* matchId;  
    const PFMatchmakingMatchMember* members;  
    uint32_t memberCount;  
    const char* const* regionPreferences;  
    uint32_t regionPreferenceCount;  
    const char* lobbyArrangementString;  
    const PFMultiplayerServerDetails* serverDetails;  
}  
```

### 成员

**`matchId`**   const char\*\
*is null-terminated*

匹配的 ID。

**`members`**   const [PFMatchmakingMatchMember](/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pfmatchmaking/structs/pfmatchmakingmatchmember)\*

已匹配到一起的用户。

**`memberCount`**   uint32\_t

已匹配到一起的成员数量。

**`regionPreferences`**   const char\* const\*

匹配的首选区域，按从最优先到最不优先排序。

**`regionPreferenceCount`**   uint32\_t

匹配的首选区域数量。

**`lobbyArrangementString`**   const char\*\
*is null-terminated*

与匹配关联的大厅安排字符串。

此连接字符串可以选择性地与 [PFMultiplayerJoinArrangedLobby()](/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pflobby/functions/pfmultiplayerjoinarrangedlobby) 一起使用，以加入与此匹配结果关联的大厅。在用户尝试加入之前，大厅不会被创建。

**`serverDetails`**   const [PFMultiplayerServerDetails](/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pfmatchmaking/structs/pfmultiplayerserverdetails)\*\
*may be nullptr*

与此匹配关联的服务器详细信息。

如果与票证关联的匹配队列已启用 PlayFab 多人游戏服务器分配，则将填充此字段。

## 要求

**头文件：** PFMatchmaking.h

## 另请参阅

[PFMatchmaking 成员](/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pfmatchmaking/pfmatchmaking_members)


## Related topics

- [PFMatchmakingTicketGetMatch](/zh-CN/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pfmatchmaking/functions/pfmatchmakingticketgetmatch.md)
- [Matchmaking SDK 快速入门](/zh-CN/services/playfab/multiplayer/matchmaking/quickstart-client-sdk.md)
- [PFMultiplayer C/C++ API 概述 - PFMatchmaking.h](/zh-CN/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pfmatchmaking/pfmatchmaking_members.md)
- [使用服务器回填工单 - Multiplayer SDK](/zh-CN/services/playfab/multiplayer/matchmaking/backfill-tickets-multiplayer-sdk.md)
- [PFMatchmakingServerBackfillTicketConfiguration](/zh-CN/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pfmatchmaking/structs/pfmatchmakingserverbackfillticketconfiguration.md)
