Skip to content
This repository has been archived by the owner on Sep 21, 2022. It is now read-only.

ModIO.ModManager.GetModStatistics

Jackson Wood edited this page Mar 25, 2019 · 2 revisions

ModManager.GetModStatistics

public static void GetModStatistics(int modId, Action<ModStatistics> onSuccess, Action<WebRequestError> onError);

Parameters

Name Description
modId Mod identifier for the mod statistics
onSuccess Action to execute if the request succeeds
onError Action to execute if the request returns an error

Description

Fetches and caches a Mod's Statistics (if not already cached or if expired).

As with all similar ModManager functions, this checks the cache for the Modfile, and if not found, fetches it from the server and stores it in the cache. Unlike most other similar ModManager functions, this endpoint will not return obsolete data as ModStatistics objects contain an expiration date and will be re-fetched if expired.

See also: ModIO.APIClient.GetModStats, ModIO.CacheClient.LoadModStatistics

Clone this wiki locally