Open this page in the API Guide

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

Parameters

culture
Type: System.Globalization.CultureInfo
The culture for which to retrieve the strings.
tags
Type: System.Collections.Generic.ICollection<String>
A collection indicating which tags should be included, or null to include all tags.

Return Value

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