Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/UCloudStorageBase
Description
Write a key/value pair to the cloud. A CSD_KeyValueWriteComplete. delegate will be called when it completes (if this function returns true).
| Name | WriteKeyValue |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Classes/Engine/CloudStorageBase.h |
| Include Path | #include "Engine/CloudStorageBase.h" |
| Source | /Engine/Source/Runtime/Engine/Private/ScriptPlatformInterface.cpp |
virtual bool WriteKeyValue
(
const FString & KeyName,
const FPlatformInterfaceData & Value
)
true on success, false otherwise.
Parameters
| Name | Remarks |
|---|---|
| KeyName | String name of the key to write. |
| Value | The type and value to write. |