Retrieves the value associated with the given key.
The unique identifier for the stored item.
The stored value as a string, or null if the key does not exist.
Removes the item associated with the specified key from storage.
The unique identifier of the item to remove.
Stores a key-value pair in the storage.
The unique identifier for the item.
The string value to store.
Defines a storage adapter used to persist session data.
Implement this interface to plug a custom storage backend (for example, an encrypted store, secure cookie helper, or a wrapper around
IndexedDB) intoMonoCloudWebJSClient.Built-in implementations:
window.localStorage.window.sessionStorage.