public static string GetLanguageValue(string themeName, string itemName, string langaugeID) { string path = GetThemeConfigurationFilePath(themeName); string xpath = String.Format("configuration/languageSettings/{0}", itemName); return(SettingUtils.GetValue(path, xpath, langaugeID)); }
public static string GetThemeValue(string themeName, string itemName, string screenType) { string path = GetThemeConfigurationFilePath(themeName); string xpath = String.Format("configuration/themeSettings/{0}", itemName); return(SettingUtils.GetValue(path, xpath, screenType)); }