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

# XblLocalStorageReadHandler

> XblLocalStorageReadHandler

# XblLocalStorageReadHandler

클라이언트가 로컬 저장소 읽기 작업을 수행하도록 요청하기 위해 XSAPI에서 호출됩니다.

## Syntax

```cpp theme={null}
void XblLocalStorageReadHandler(  
         void* context,  
         XblClientOperationHandle operation,  
         XblUserHandle user,  
         const char* key  
)  
```

### Parameters

*context*   \_In\_opt\_\
Type: void\*

이벤트 처리기에서 사용하는 데이터에 대한 선택적 포인터입니다.

*operation*   \_In\_\
Type: [XblClientOperationHandle](/reference/live/xsapi-c/platform_c/handles/xblclientoperationhandle)

이 작업의 핸들입니다.

*user*   \_In\_\
Type: XblUserHandle

XSAPI가 읽기를 요청하는 대상 사용자입니다.

*key*   \_In\_z\_\
Type: char\*

읽을 데이터를 식별합니다.

### Return value

Type: void

## Remarks

작업이 완료되면 XblLocalStorageReadComplete를 호출해야 합니다. context를 제외한 모든 매개 변수는 XSAPI가 소유하며 작업이 완료될 때까지 유효함이 보장됩니다. 요청된 키를 찾을 수 없는 경우, 클라이언트는 XblClientOperationResult::Success로 완료하고 데이터를 반환하지 않아야 합니다.

## Requirements

**Header:** platform\_c.h

**Library:** Microsoft.Xbox.Services.14x.GDK.C.lib

## See also

[platform\_c](/reference/live/xsapi-c/platform_c/platform_c_members)
