本文整理汇总了C#中UmbracoHelper.GetDictionaryValue方法的典型用法代码示例。如果您正苦于以下问题:C# UmbracoHelper.GetDictionaryValue方法的具体用法?C# UmbracoHelper.GetDictionaryValue怎么用?C# UmbracoHelper.GetDictionaryValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UmbracoHelper
的用法示例。
在下文中一共展示了UmbracoHelper.GetDictionaryValue方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetEmailTemplate
string GetEmailTemplate(string template, string dictionaryString, string postTitle, string body, string author, string threadUrl, bool newPost)
{
var umbHelper = new UmbracoHelper(UmbracoContext.Current);
var dictionaryTemplate = umbHelper.GetDictionaryValue(dictionaryString);
if ( !string.IsNullOrWhiteSpace(dictionaryTemplate)) {
template = dictionaryTemplate;
}
Dictionary<string, string> parameters = new Dictionary<string, string>();
parameters.Add("{{author}}", author);
parameters.Add("{{postTitle}}", postTitle);
parameters.Add("{{body}}", body);
parameters.Add("{{threadUrl}}", threadUrl);
parameters.Add("{{newOld}}", newPost ? "New" : "Updated");
return template.ReplaceMany(parameters);;
}
示例2: GetDictionaryValue
public string GetDictionaryValue(UmbracoHelper umbraco, string key, params string[] defaultValues)
{
var result = umbraco.GetDictionaryValue(key);
if (!string.IsNullOrWhiteSpace(result))
return result;
var languages = _localizationService.GetAllLanguages().OrderBy(x=>x.Id).ToArray();
AddDictionaryItem(key,defaultValues,languages);
return umbraco.GetDictionaryValue(key);
}