ILocalizationServiceGetStrings Method

Gets the collection of localized strings corresponding to the specified parameters.

Namespace:  Dundas.BI
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax
IReadOnlyDictionary<Guid, IReadOnlyDictionary<string, string>> GetStrings(
	CultureInfo culture,
	ICollection<string>? tags
)

Parameters

culture
Type: System.GlobalizationCultureInfo
The culture for which to retrieve the strings.
tags
Type: System.Collections.GenericICollectionString
A collection indicating which tags should be included, or to include all tags.

Return Value

Type: IReadOnlyDictionaryGuid, IReadOnlyDictionaryString, String
A dictionary, keyed by module, containing a dictionary of the localized strings.
Exceptions
ExceptionCondition
ArgumentNullExceptionculture is .
Remarks
The result will contain any strings defined for the specified tag(s) as well as those inherited from any parent cultures.
See Also