Navigation
API > API/Plugins > API/Plugins/OnlineServicesCommon > API/Plugins/OnlineServicesCommon/IOnlineConfigProvider
Overloads
| Name |
Remarks |
Include Path |
Unreal Specifiers |
|
Get a FString value |
Online/OnlineConfig.h |
|
|
Get an value consisting of a TArray of FStrings |
Online/OnlineConfig.h |
|
bool GetValue
(
const TCHAR* Section,
const TCHAR* Key,
IOnlineConfigStructPtr& Value
)
|
|
Online/OnlineConfig.h |
|
int32 GetValue
(
const TCHAR* Section,
const TCHAR* Key,
TArray< IOnlineConfigStructPtr >& Value
)
|
|
Online/OnlineConfig.h |
|
bool GetValue
(
const TCHAR* Section,
const TCHAR* Key,
T& Value
)
|
|
Online/OnlineConfig.h |
|
int32 GetValue
(
const TCHAR* Section,
const TCHAR* Key,
TArray< T >& Value
)
|
|
Online/OnlineConfig.h |
|
GetValue(const TCHAR , const TCHAR , FString &)
Description
Get a FString value
| |
|
| Name |
GetValue |
| Type |
function |
| Header File |
/Engine/Plugins/Online/OnlineServices/Source/OnlineServicesCommon/Public/Online/OnlineConfig.h |
| Include Path |
#include "Online/OnlineConfig.h" |
bool GetValue
(
const TCHAR * Section,
const TCHAR * Key,
FString & Value
)
true if a value was read
Parameters
| Name |
Remarks |
| Section |
Section to read the value from |
| Key |
Key in the section for the value |
| Value |
FString value read from the config. Will be unchanged if not present |
GetValue(const TCHAR , const TCHAR , TArray< FString > &)
Description
Get an value consisting of a TArray of FStrings
| |
|
| Name |
GetValue |
| Type |
function |
| Header File |
/Engine/Plugins/Online/OnlineServices/Source/OnlineServicesCommon/Public/Online/OnlineConfig.h |
| Include Path |
#include "Online/OnlineConfig.h" |
int32 GetValue
(
const TCHAR * Section,
const TCHAR * Key,
TArray < FString > & Value
)
number of values in the array
Parameters
| Name |
Remarks |
| Section |
Section to read the value from |
| Key |
Key in the section for the value |
| Value |
Array of FStrings read from the config. Will be empty if not present |
GetValue(const TCHAR , const TCHAR , IOnlineConfigStructPtr &)
| |
|
| Name |
GetValue |
| Type |
function |
| Header File |
/Engine/Plugins/Online/OnlineServices/Source/OnlineServicesCommon/Public/Online/OnlineConfig.h |
| Include Path |
#include "Online/OnlineConfig.h" |
bool GetValue
(
const TCHAR * Section,
const TCHAR * Key,
IOnlineConfigStructPtr & Value
)
GetValue(const TCHAR , const TCHAR , TArray< IOnlineConfigStructPtr > &)
| |
|
| Name |
GetValue |
| Type |
function |
| Header File |
/Engine/Plugins/Online/OnlineServices/Source/OnlineServicesCommon/Public/Online/OnlineConfig.h |
| Include Path |
#include "Online/OnlineConfig.h" |
int32 GetValue
(
const TCHAR * Section,
const TCHAR * Key,
TArray < IOnlineConfigStructPtr > & Value
)
GetValue(const TCHAR , const TCHAR , T &)
| |
|
| Name |
GetValue |
| Type |
function |
| Header File |
/Engine/Plugins/Online/OnlineServices/Source/OnlineServicesCommon/Public/Online/OnlineConfig.h |
| Include Path |
#include "Online/OnlineConfig.h" |
template<typename T>
bool GetValue
(
const TCHAR * Section,
const TCHAR * Key,
T & Value
)
GetValue(const TCHAR , const TCHAR , TArray< T > &)
| |
|
| Name |
GetValue |
| Type |
function |
| Header File |
/Engine/Plugins/Online/OnlineServices/Source/OnlineServicesCommon/Public/Online/OnlineConfig.h |
| Include Path |
#include "Online/OnlineConfig.h" |
template<typename T>
int32 GetValue
(
const TCHAR * Section,
const TCHAR * Key,
TArray < T > & Value
)