Esempio n. 1
0
        /// <summary>
        /// Insert an Item with a Tag.
        /// </summary>
        public Dictionary <string, string> Insert(string key, string data, string tag)
        {
            List <string> tags = new List <string>();

            tags.Add(tag);

            return(InsertKeyInternal.Execute(_uri, _container, _token, key, data, tags));
        }
Esempio n. 2
0
 /// <summary>
 /// Insert an Item with a list of Tags.
 /// </summary>
 public Dictionary <string, string> Insert(string key, string data, List <string> tags)
 {
     return(InsertKeyInternal.Execute(_uri, _container, _token, key, data, tags));
 }