Example #1
0
 /// <summary>
 /// Retrieve a value by key from the table. Returns <code>null</code> if not found.
 /// </summary>
 /// <param name="key">The key to look for.</param>
 /// <returns>The retrieved value.</returns>
 /// <exception cref="SDBPException"/>
 /// <seealso cref="Get(string, string)"/>
 /// <seealso cref="Get(byte[])"/>
 /// <seealso cref="Get(byte[], byte[])"/>
 public virtual string Get(string key)
 {
     return(client.Get(tableID, key));
 }