This repository was archived by the owner on Sep 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
ModIO.APIClient.GetAllGames
Jackson Wood edited this page Mar 6, 2019
·
13 revisions
APIClient.GetAllGames
public static void GetAllGames(RequestFilter filter, APIPaginationParameters pagination, Action<RequestPage<GameProfile>> successCallback, Action<WebRequestError> errorCallback);
| Name | Description |
|---|---|
| filter | The filter parameters to be applied to the request |
| pagination | The pagination parameters to be applied to the request |
| successCallback | Action to execute if the request succeeds |
| errorCallback | Action to execute if the request returns an error |
Fetches all the game profiles from the mod.io servers.
A successful request returns a RequestPage of GameProfiles that match the filtering and pagination parameters supplied.
See the mod.io filtering documentation for more comprehensive explanation of the filtering and pagination parameters.
See also: docs.mod.io page, ModIO.API.GetAllGamesFilterFields