Example #1
0
 /// <summary>
 /// Puts the specified object into the cache at the specified key,
 /// using the specified options.
 /// </summary>
 /// <param name="key"></param>
 /// <param name="value"></param>
 /// <param name="options"></param>
 public void Put(string key, object value, CachePutOptions options)
 {
     _provider.Put(_cacheId, key, value, options);
 }