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

# XStoreProductsQueryHasMorePages

> XStoreProductsQueryHasMorePages

# XStoreProductsQueryHasMorePages

지정된 쿼리에 대한 추가 결과 페이지가 있는지 확인합니다.
이는 특히 [XStoreQueryAssociatedProductsAsync](/reference/system/xstore/functions/xstorequeryassociatedproductsasync)와 같이 여러 결과를 반환할 것으로 예상되는 `XStoreQuery` API에 대해 호출하는 것이 필수적입니다.

## 구문

```cpp theme={null}
bool XStoreProductsQueryHasMorePages(  
         const XStoreProductQueryHandle productQueryHandle  
)  
```

### 매개 변수

*productQueryHandle*   \_In\_\
형식: XStoreProductQueryHandle

더 많은 페이지를 확인할 쿼리에 대한 핸들입니다. XStoreProductsQueryHasMorePages에 대한 첫 번째 호출에서는 [XStoreQueryProductForCurrentGameResult](/reference/system/xstore/functions/xstorequeryproductforcurrentgameresult), [XStoreQueryProductForPackageResult](/reference/system/xstore/functions/xstorequeryproductforpackageresult), [XStoreQueryEntitledProductsResult](/reference/system/xstore/functions/xstorequeryentitledproductsresult) 또는 [XStoreQueryProductsResult](/reference/system/xstore/functions/xstorequeryproductsresult)가 반환한 XStoreProductQueryHandle입니다.
후속 호출에서는 [XStoreProductsQueryNextPageResult](/reference/system/xstore/functions/xstoreproductsquerynextpageresult)가 반환한 쿼리 핸들을 사용해야 합니다.

### 반환 값

형식: bool

표시할 결과 페이지가 더 있으면 true를 반환합니다.

## 설명

이 함수는 제품 쿼리에 추가 제품 정보 페이지가 있는지 확인하는 데 사용됩니다.
[XStoreEnumerateProductsQuery](/reference/system/xstore/functions/xstoreenumerateproductsquery)로 제품 쿼리가 열거된 후에 호출됩니다.
이 함수가 true를 반환하면 읽을 제품 쿼리 정보가 더 있습니다.
추가 제품 쿼리 정보를 읽으려면 [XStoreProductsQueryNextPageAsync](/reference/system/xstore/functions/xstoreproductsquerynextpageasync)를 호출합니다.
사용 예제는 [XStoreQueryAssociatedProductsAsync](/reference/system/xstore/functions/xstorequeryassociatedproductsasync)를 참조하세요.

## 요구 사항

**헤더:** XStore.h(XGameRuntime.h에 포함됨)

**라이브러리:** xgameruntime.lib

**지원 플랫폼:** Windows, XBOX One 제품군 콘솔 및 XBOX Series 콘솔

## 참고 항목

[XStore](/reference/system/xstore/xstore_members)\
[XStoreEnumerateProductsQuery](/reference/system/xstore/functions/xstoreenumerateproductsquery)\
[XStoreProductsQueryNextPageAsync](/reference/system/xstore/functions/xstoreproductsquerynextpageasync)\
[XStoreQueryAssociatedProductsAsync](/reference/system/xstore/functions/xstorequeryassociatedproductsasync)


## Related topics

- [XStoreProductsQueryNextPageResult](/ko/reference/system/xstore/functions/xstoreproductsquerynextpageresult.md)
- [XStoreProductsQueryNextPageAsync](/ko/reference/system/xstore/functions/xstoreproductsquerynextpageasync.md)
- [XStoreEnumerateProductsQuery](/ko/reference/system/xstore/functions/xstoreenumerateproductsquery.md)
- [XStore](/ko/reference/system/xstore/xstore_members.md)
- [GDK용 Unity C# API 래퍼](/ko/build/gdk-and-engines/unity/unity-api-wrappers.md)
