RecroDictServiceGetDictionaryAsync Method

Retrieves the localized strings for the specified scope and language asynchronously.

Definition

Namespace: Recrovit.RecroGridFramework
Assembly: Recrovit.RecroGrid (in Recrovit.RecroGrid.dll) Version: 8.2.0.24.0426.1
C#
public Task<ConcurrentDictionary<string, string>> GetDictionaryAsync(
	string scope,
	string language = null,
	bool authClient = true
)

Parameters

scope  String
The scope of the localized strings.
language  String  (Optional)
The language of the localized strings. If null, the default language will be used.
authClient  Boolean  (Optional)
Not used.

Return Value

TaskConcurrentDictionaryString, String
A task representing the asynchronous operation, containing the localized strings as a concurrent dictionary.

See Also