Пример #1
0
 /// <summary>
 /// Removes the value from the back end store.
 /// </summary>
 /// <param name="category">The category under which the object is stored.</param>
 /// <param name="sessionId">The key against which the object is stored in the category.</param>
 public void Remove(string category, string sessionId)
 {
     try
     {
         _provider.Remove(category, sessionId);
     }
     catch (SessionException)
     {
         throw;
     }
     catch (Exception ex)
     {
         throw new SessionException(SessionResources.Error_Generic, ex);
     }
 }