Navigation
API > API/Runtime > API/Runtime/Analytics > API/Runtime/Analytics/FAnalyticsPropertyStore > API/Runtime/Analytics/FAnalyticsPropertyStore/Get
- IAnalyticsPropertyStore::Get()
- FAnalyticsPropertyStore::Get()
References
| Module | Analytics |
| Header | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h |
| Include | #include "AnalyticsPropertyStore.h" |
| Source | /Engine/Source/Runtime/Analytics/Analytics/Private/AnalyticsPropertyStore.cpp |
virtual EStatusCode Get
(
const FString & Key,
int32 & OutValue
) const
Remarks
Reads the specified key value from the store. One of the following code
- EStatusCode::Success if the value was read succeessfully.
- EStatusCode::BadType if the key/value pair exists, but the type used did not match the actual value type.
- EStatusCode::NotFound if the key/value could not be found.
Parameters
| Name | Description |
|---|---|
| Key | The name of the property to read. |
| OutValue | The value of the property if the function returns EStatusCode::Success, left unchanged otherwise. |