Interface IDataStorageHelper
- Namespace
- Archipelago.MultiClient.Net.Helpers
- Assembly
- Archipelago.MultiClient.Net.dll
Provides access to a server side data storage to share and store values across sessions and players
public interface IDataStorageHelper : IDataStorageWrapper
- Inherited Members
Properties
this[Scope, string]
Stored or retrieves a value from the server side data storage. Assignment operations like = or *= will run asynchronously on server only The retrievals are done synchronously however this storage is implemented using deferred execution.
DataStorageElement this[Scope scope, string key] { get; set; }
Parameters
scope
ScopeThe scope of the key
key
stringThe key for which the value should be stored or retrieved
Property Value
- DataStorageElement
A value
this[string]
Stored or retrieves a value from the server side data storage. Assignment operations like = or *= will run asynchronously on server only The retrievals are done synchronously however this storage is implemented using deferred execution.
DataStorageElement this[string key] { get; set; }
Parameters
key
stringThe key under which the value should be stored or retrieved
Property Value
- DataStorageElement
A value