Method GetValue
GetValue(LocaleIdentifier, out T)
Attempts to find a value for the provided LocaleIdentifier.
Declaration
bool GetValue(LocaleIdentifier localeIdentifier, out T foundValue)
Parameters
Type | Name | Description |
---|---|---|
LocaleIdentifier | localeIdentifier | The LocaleIdentifier to check for. |
T | foundValue | The value found for the LocaleIdentifier. |
Returns
Type | Description |
---|---|
bool |
GetValue(LocaleIdentifier, LocaleIdentifier, out T)
Attempts to find a value for the provided LocaleIdentifier or fallback.
Declaration
bool GetValue(LocaleIdentifier localeIdentifier, LocaleIdentifier fallback, out T foundValue)
Parameters
Type | Name | Description |
---|---|---|
LocaleIdentifier | localeIdentifier | The LocaleIdentifier to check for. |
LocaleIdentifier | fallback | The LocaleIdentifier to fallback to if one could not be found for |
T | foundValue | The value found for the LocaleIdentifier or fallback. |
Returns
Type | Description |
---|---|
bool |