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
)
Function GetStrings (
culture As CultureInfo,
tags As ICollection(Of String)
) As IReadOnlyDictionary(Of Guid, IReadOnlyDictionary(Of String, String))
IReadOnlyDictionary<Guid, IReadOnlyDictionary<String^, String^>^>^ GetStrings(
CultureInfo^ culture,
ICollection<String^>^ tags
)
abstract GetStrings :
culture : CultureInfo *
tags : ICollection<string> -> IReadOnlyDictionary<Guid, IReadOnlyDictionary<string, string>>
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 Remarks
The result will contain any strings defined for the specified tag(s) as well as those inherited
from any parent cultures.
See Also