public static void KeyValuePut(this IKeyValueStore self, string key, object value) { self.KeyValuePutAsync(key, value).Wait(); }
public static Task KeyValuePutAsync(this IKeyValueStore self, string key, object value) { var json = JsonConvert.SerializeObject(value); return(self.KeyValuePutAsync(key, json)); }