[]
Defines a contract for a service that provides persistence for session settings.
public interface ISessionSettingsStorage
Implementations of this interface are responsible for storing and retrieving session settings, such as user preferences or application state, to and from a persistent storage mechanism (e.g., file system, database). This allows the application to maintain continuity across sessions.
Name | Description |
---|---|
Load(SessionSettings) | Loads session settings from persistent storage into the specified SessionSettings instance. |
Save(SessionSettings) | Saves the specified session settings to persistent storage. |