API/Autodoc/Classes/RuStore.RemoteConfig.Internal.RemoteConfigImpl.en.md


RuStore::RemoteConfig::Internal::RemoteConfigImpl

Inherits from RuStore.RemoteConfig.RemoteConfig

Public Functions

Name
RemoteConfigImpl(AndroidJavaObject remoteConfig)
virtual override bool ContainsKey(string key)
The method checks if a key exists in the current instance of RemoteConfig.
virtual override bool GetBool(string key)
Casting the parameter value to bool type.
virtual override double GetDouble(string key)
Casting the parameter value to double type.
virtual override float GetFloat(string key)
Casting the parameter value to float type.
virtual override int GetInt(string key)
Casting the parameter value to int type.
virtual override long GetLong(string key)
Casting the parameter value to long type.
virtual override string GetString(string key)
Casting the parameter value to string type.

function RemoteConfigImpl

RemoteConfigImpl(
    AndroidJavaObject remoteConfig
)

function ContainsKey

virtual override bool ContainsKey(
    string key
)

The method checks if a key exists in the current instance of RemoteConfig.

Parameters:

  • key Key name.

Return: Returns true if the parameter with the specified key exists in the data set, otherwise false.

Reimplements: RuStore::RemoteConfig::RemoteConfig::ContainsKey

function GetBool

virtual override bool GetBool(
    string key
)

Casting the parameter value to bool type.

Parameters:

  • key Key name.

Return: Parameter value.

Reimplements: RuStore::RemoteConfig::RemoteConfig::GetBool

function GetDouble

virtual override double GetDouble(
    string key
)

Casting the parameter value to double type.

Parameters:

  • key Key name.

Return: Parameter value.

Reimplements: RuStore::RemoteConfig::RemoteConfig::GetDouble

function GetFloat

virtual override float GetFloat(
    string key
)

Casting the parameter value to float type.

Parameters:

  • key Key name.

Return: Parameter value.

Reimplements: RuStore::RemoteConfig::RemoteConfig::GetFloat

function GetInt

virtual override int GetInt(
    string key
)

Casting the parameter value to int type.

Parameters:

  • key Key name.

Return: Parameter value.

Reimplements: RuStore::RemoteConfig::RemoteConfig::GetInt

function GetLong

virtual override long GetLong(
    string key
)

Casting the parameter value to long type.

Parameters:

  • key Key name.

Return: Parameter value.

Reimplements: RuStore::RemoteConfig::RemoteConfig::GetLong

function GetString

virtual override string GetString(
    string key
)

Casting the parameter value to string type.

Parameters:

  • key Key name.

Return: Parameter value.

Reimplements: RuStore::RemoteConfig::RemoteConfig::GetString