Client TitleConfigData API Reference
Title Config Data is a set of key-value pairs for the whole title. It is commonly used to store configuration data that is applicable across the title-wide, such as title region info list, game client version control data, and so on.
API List
| API | Description |
|---|---|
| GetTitleConfigKVData | Query the specified key-value data of the title config data. |
| GetAllTitleConfigKVData | Query all key-value data of the title config data. |
API Details
GetTitleConfigKVData
Query the specified key-value data of the title config data.
/// <summary>Query the specified key-value data of the title config data.</summary>
/// <param name="query_keys">Keys to query</param>
public void GetTitleConfigKVData(List<string> query_keys, TitleConfigDataDelegate0 callback);
Parameters:
| Param | Type | Description |
|---|---|---|
| query_keys | List<string> | Keys to query |
| callback | TitleConfigDataDelegate0 |
Return: void
GetAllTitleConfigKVData
Query all key-value data of the title config data.
/// <summary>Query all key-value data of the title config data.</summary>
public void GetAllTitleConfigKVData(TitleConfigDataDelegate0 callback);
Parameters:
| Param | Type | Description |
|---|---|---|
| callback | TitleConfigDataDelegate0 |
Return: void
All Delegates
public delegate void TitleConfigDataDelegate0(PgosResult a0, TitleConfigKVDataQueryResult a1);
Type Reference: