public async void Remove_Should_Fail()
 {
     Assert.False(await client.RemoveAsync(GetUniqueKey()));
 }
예제 #2
0
 public static bool Remove(this ISimpleMemcachedClient self, string key)
 {
     return(self.RemoveAsync(key).RunAndUnwrap());
 }