Example #1
0
        public static Dictionary <string, T> GetDictionaryValue <T>(string key, Common.User u = null, DateTime?targetDate = null)
        {
            string strVal = getValue <string>(key, u, targetDate);

            return(strVal == null ? null : JsonAccess.Deserialize <Dictionary <string, T> >(strVal));
        }
Example #2
0
        public static List <string> GetStringListValue(string key, Common.User u = null, DateTime?targetDate = null)
        {
            string strVal = getValue <string>(key, u, targetDate);

            return(strVal == null ? null : JsonAccess.Deserialize <List <string> >(strVal));
        }