跳到主要内容

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

APIDescription
GetTitleConfigKVDataQuery the specified key-value data of the title config data.
GetAllTitleConfigKVDataQuery 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:

ParamTypeDescription
query_keysList<string>Keys to query
callbackTitleConfigDataDelegate0

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:

ParamTypeDescription
callbackTitleConfigDataDelegate0

Return: void

All Delegates

public delegate void TitleConfigDataDelegate0(PgosResult a0, TitleConfigKVDataQueryResult a1);

Type Reference: