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 Code |
---|---|
public interface IBackingStore |
Visual Basic (Declaration) | Copy Code |
---|---|
Public Interface IBackingStore |
The type exposes the following methods.
Public Methods
Name | Description | |
---|---|---|
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. |
|
Dispose | (Inherited from IDisposable.) | |
Flush |
Flushes all CacheItems from backing store. This method must meet the Weak Exception Safety guarantee.
|
|
Load |
Loads all CacheItems from backing store.
|
|
Remove |
Removes an item with the given key from the backing store
|
|
UpdateLastAccessedTime |
Updates the last accessed time for a cache item.
|
See Also
Smartsite.Tools.Caching Namespace