Skip to main content

Client TitleRegionConfigData API Reference

Title Region Config Data is a set of data associated with the title region. It is commonly used to store configuration data that is applicable across the title-region-wide, such as level experience ramp, damage rules, and so on.

API List

APIDescription
GetTitleRegionConfigKVDataQuery the specified key-value data of the title region config data.
GetAllTitleRegionConfigKVDataQuery all key-value data of the title region config data.

API Details

GetTitleRegionConfigKVData

Query the specified key-value data of the title region config data.

/// <summary>Query the specified key-value data of the title region config data.</summary>
/// <param name="query_keys">Keys to query</param>
public void GetTitleRegionConfigKVData(List<string> query_keys, TitleRegionConfigDataDelegate0 callback);

Parameters:

ParamTypeDescription
query_keysList<string>Keys to query
callbackTitleRegionConfigDataDelegate0

Return: void

GetAllTitleRegionConfigKVData

Query all key-value data of the title region config data.

/// <summary>Query all key-value data of the title region config data.</summary>
public void GetAllTitleRegionConfigKVData(TitleRegionConfigDataDelegate0 callback);

Parameters:

ParamTypeDescription
callbackTitleRegionConfigDataDelegate0

Return: void

All Delegates

public delegate void TitleRegionConfigDataDelegate0(PgosResult a0, TitleRegionConfigKVDataQueryResult a1);

Type Reference: