public static void Update(string key, object value) { if (string.IsNullOrEmpty(key)) { throw new ArgumentNullException("key"); } if (null == value) { throw new ArgumentNullException("value"); } _cache.Update(key, value); }