Class LeaderboardRecordService

Class LeaderboardRecordService#

Inheritance Relationships#

Base Type#

Class Documentation#

class xbe.sdk.Services.LeaderboardRecordService : xbe.sdk.ServiceBase#

Public Functions

LeaderboardRecordService ()#
Task<List<LeaderboardRecord>> FindAll (string id, Dictionary<string, string> query = null)#

Retrieves a list of objects matching the specified search parameters.

Param id:

Id of the leaderboard

Param query:

A map of property names to values to search for.

Return:

Task<LeaderboardRecord> Create (string id, LeaderboardRecord obj)#

Creates a new instance of LeaderboardRecord, storing the object on the remote service and returning the final result.

Param id:

Id of the leaderboard

Param obj:

The object to persist with the remote service.

Return:

A task whose result is the final object as it was persisted with the remote service.

Task Truncate (string id, Dictionary<string, string> query = null)#

Deletes all records from the service.

async new Task<long> Count (string id, Dictionary<string, string> query = null)#

Retrieves the total number of objects matching the specified search parameters.

Param id:

Id of the leaderboard

Param query:

A map of property names to values to search for.<

Return: