Rebel.Cms.Web.RebelHelper.GetDictionaryItem C# (CSharp) 메소드

GetDictionaryItem() 공개 메소드

public GetDictionaryItem ( string key, string defaultValue = null ) : string
key string
defaultValue string
리턴 string
        public string GetDictionaryItem(string key, string defaultValue = null)
        {
            var dictionaryHelper = new DictionaryHelper(_requestContext.Application);
            return dictionaryHelper.GetDictionaryItemValue(key, defaultValue);
        }