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 (26.2.0.1000)
Syntax
IReadOnlyDictionary<Guid, IReadOnlyDictionary<string, string>> GetStrings(
	CultureInfo culture,
	ICollection<string>? tags
)

Parameters

culture  CultureInfo
The culture for which to retrieve the strings.
tags  ICollectionString
A collection indicating which tags should be included, or to include all tags.

Return Value

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