예제 #1
0
 public bool SetEntryInHashIfNotExists <T>(string hashId, string key, T value)
 {
     return(this.TryCatch <bool>(() => this.client.SetEntryInHashIfNotExists(hashId, key, TextExtensions.SerializeToString <T>(value)), hashId));
 }