> ## 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.

# PFLobbyGetMemberPropertyKeys

> PlayFab Multiplayer C++ SDK API를 사용하여 PlayFab 로비에서 멤버의 사용자 지정 속성 키를 열거하기 위한 PFLobbyGetMemberPropertyKeys 참조입니다.

지정된 멤버의 속성 키 목록을 가져옵니다.

## 구문

```cpp theme={null}
HRESULT PFLobbyGetMemberPropertyKeys(  
    PFLobbyHandle lobby,  
    const PFEntityKey* member,  
    uint32_t* propertyCount,  
    const char* const** keys  
)  
```

### 매개 변수

**`lobby`**   PFLobbyHandle

로비의 핸들입니다.

**`member`**   [PFEntityKey\*](/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pfmultiplayer/pfentitykey_clientsdk)

쿼리 중인 멤버입니다.

**`propertyCount`**   uint32\_t\*\
*출력*

멤버 속성의 출력 개수입니다.

**`keys`**   char\* const\*\*\
*크기가 `*propertyCount`인 라이브러리 할당 출력 배열*

멤버 속성 키의 출력 배열입니다.

### 반환 값

형식: HRESULT

호출이 성공한 경우 `S_OK`이고, 그렇지 않으면 오류 코드입니다. 오류 코드의 사람이 읽을 수 있는 형태는 [PFMultiplayerGetErrorMessage()](/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pfmultiplayer/functions/pfmultiplayergeterrormessage)를 통해 검색할 수 있습니다.

## 설명

멤버별 속성은 로비의 멤버와 서버 소유 로비인 경우 서버만 볼 수 있습니다. <br /><br /> 멤버가 [PFMultiplayerCreateAndJoinLobby()](/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pflobby/functions/pfmultiplayercreateandjoinlobby), [PFMultiplayerJoinLobby()](/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pflobby/functions/pfmultiplayerjoinlobby) 또는 [PFLobbyAddMember](/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pflobby/functions/pflobbyaddmember)를 통해 여전히 이 로비에 비동기적으로 참여하는 중이라면 이 메서드는 키를 반환하지 않습니다.

## 요구 사항

**헤더:** PFLobby.h

## 참고 항목

[PFLobby 멤버](/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pflobby/pflobby_members)


## Related topics

- [PFMultiplayer C/C++ API 개요 - PFLobby.h](/ko/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pflobby/pflobby_members.md)
- [PlayFab Multiplayer C++ SDK 릴리스 정보](/ko/services/playfab/multiplayer/lobby/lobby-matchmaking-sdks/lobby-and-matchmaking-release-notes.md)
- [PFLobbyGetMemberProperty](/ko/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pflobby/functions/pflobbygetmemberproperty.md)
- [Lobby.GetMemberProperties](/ko/services/playfab/multiplayer/lobby/unity-multiplayer-api-reference/PlayFab.Multiplayer/Lobby/GetMemberProperties.md)
- [LobbyMemberUpdateSummary.UpdatedMemberPropertyKeys](/ko/services/playfab/multiplayer/lobby/unity-multiplayer-api-reference/PlayFab.Multiplayer/LobbyMemberUpdateSummary/UpdatedMemberPropertyKeys.md)
