Open this page in the API Guide

LocalizationData.ConvertFromDictionary Method

Converts from dictionary to a IList<T> for JSON transport.

Namespace:  Dundas.BI.WebApi.Models
Assembly:  Dundas.BI.WebApiCore (in Dundas.BI.WebApiCore.dll) Version: 2.0.0.0 (25.1.0.1000)
Syntax
public static IList<LocalizationData> ConvertFromDictionary(
	CultureInfo culture,
	IReadOnlyDictionary<Guid, IReadOnlyDictionary<string, string>> strings
)

Parameters

culture
Type: System.Globalization.CultureInfo
The culture of the provided strings.
strings
Type: System.Collections.Generic.IReadOnlyDictionary<Guid, IReadOnlyDictionary<String, String>>
The strings to convert.

Return Value

Type: IList<LocalizationData>
The list of localization data in JSON ready format.
See Also