public KeyValueList GetKeyValueList(string sKey) { var result = new KeyValueList(); string sValue = GetString(sKey); if (!string.IsNullOrEmpty(sValue)) { result.Decode(sValue); } return(result); }