This document is provided on an "AS IS" basis without warranties of any kind. Smartsite iXperion class libraries may change in future releases.

Syntax

C# Copy imageCopy Code
                                  public interface IBackingStore
Visual Basic (Declaration) Copy imageCopy Code
                                  Public Interface IBackingStore

The type exposes the following methods.

Public Methods

  Name Description
Public method Add

This method is responsible for adding a CacheItem to the BackingStore. This operation must be successful even if an item with the same key already exists. This method must also meet the Weak Exception Safety guarantee and remove the item from the backing store if any part of the Add fails.

Public method Dispose (Inherited from IDisposable.)
Public method Flush
Flushes all CacheItems from backing store. This method must meet the Weak Exception Safety guarantee.
Public method Load
Loads all CacheItems from backing store.
Public method Remove
Removes an item with the given key from the backing store
Public method UpdateLastAccessedTime
Updates the last accessed time for a cache item.

See Also

Advanced