Class GameSaveInstaller
Abstract base class for installing the GameSave service.
Implements
Inherited Members
Namespace: Serenity.GameSave.Installation.Installers
Assembly: Serenity.GameSave.Installation.dll
Syntax
public abstract class GameSaveInstaller : IInstaller
Remarks
Concrete implementations override Install(ILogService) to create the service, providing a game-save store for persistence.
Constructors
GameSaveInstaller()
Declaration
protected GameSaveInstaller()
Fields
_service
Declaration
protected IGameSaveService _service
Field Value
| Type | Description |
|---|---|
| IGameSaveService | The installed game-save service. |
Methods
GetService()
Gets the installed game-save service.
Declaration
public IGameSaveService GetService()
Returns
| Type | Description |
|---|---|
| IGameSaveService | The installed IGameSaveService. |
Install(ILogService)
Installs the GameSave service.
Declaration
public abstract void Install(ILogService logService)
Parameters
| Type | Name | Description |
|---|---|---|
| ILogService | logService | The logging service for diagnostic output. |