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

# XGameStreamingIsStreaming

> XGameStreamingIsStreaming

# XGameStreamingIsStreaming

게임이 현재 스트리밍되고 있는지 여부를 확인합니다.

## 구문

```cpp theme={null}
bool XGameStreamingIsStreaming();
```

### 반환 값

형식: bool

`XGameStreamingIsStreaming`은 게임이 하나 이상의 스트리밍 클라이언트 장치가 연결된 XBOX에서 실행 중이면 true를 반환합니다.

## 설명

`XGameStreamingIsStreaming`은 콘솔이 Remote Play를 통해 스트리밍되고 있는지 또는 XBOX Game Streaming을 통해 스트리밍되고 있는지 구분하지 않습니다.

개별 스트리밍 클라이언트 장치의 연결 및/또는 연결 해제에 대해 알림을 받으려면 [XGameStreamingRegisterConnectionStateChanged](/reference/system/xgamestreaming/functions/xgamestreamingregisterconnectionstatechanged)를 통해 콜백을 등록하는 것을 고려하세요.

## 예제

```C++ theme={null}
 if (XGameStreamingIsStreaming())
 {
     // The game is currently streaming to at least one device
     // Enable any customizations that might be useful when running from the cloud
 }
```

## 요구 사항

**헤더:** xgamestreaming.h

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

**지원 플랫폼:** Windows, XBOX One 계열 콘솔 및 XBOX Series 콘솔

## 함께 보기

[XGameStreamingConnectionState](/reference/system/xgamestreaming/enums/xgamestreamingconnectionstate)\
[XGameStreamingUnregisterConnectionStateChanged](/reference/system/xgamestreaming/functions/xgamestreamingunregisterconnectionstatechanged)\
[XGameStreamingRegisterConnectionStateChanged](/reference/system/xgamestreaming/functions/xgamestreamingregisterconnectionstatechanged)\
[XGameStreaming](/reference/system/xgamestreaming/xgamestreaming_members#ConnectionState)


## Related topics

- [XGameStreamingGetClients](/ko/reference/system/xgamestreaming/functions/xgamestreaminggetclients.md)
- [XGameStreamingGetClientCount](/ko/reference/system/xgamestreaming/functions/xgamestreaminggetclientcount.md)
- [XGameStreamingGetConnectionState](/ko/reference/system/xgamestreaming/functions/xgamestreaminggetconnectionstate.md)
- [XGameStreaming](/ko/reference/system/xgamestreaming/xgamestreaming_members.md)
- [XGameStreamingUnregisterConnectionStateChanged](/ko/reference/system/xgamestreaming/functions/xgamestreamingunregisterconnectionstatechanged.md)
