Example #1
0
 public string GetData(string FullKey)
 {
     return(WebDataStruct.FindDataFromFullKey(this.LocalData, FullKey).Value);
 }
Example #2
0
        public void AddData(string FullKey, string Value)
        {
            WebDataStruct SearchedDataObj = WebDataStruct.FindDataFromFullKey(this.LocalData, FullKey);

            SearchedDataObj.Value = Value;
        }