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