Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/UCloudStorageBase
Description
Initiate reading a key/value pair from cloud storage. A CSD_KeyValueReadComplete. delegate will be called when it completes (if this function returns true).
| Name | ReadKeyValue |
| 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 ReadKeyValue
(
const FString & KeyName,
EPlatformInterfaceDataType Type,
class UObject * SerializedObj
)
true on success, false otherwise.
Parameters
| Name | Remarks |
|---|---|
| KeyName | String name of the key to retrieve. |
| Type | Type of data to retrieve . |
| SerializedObj | If you are reading an object (PIDT_Object), it will de-serialize the binary blob into this object. |