This repository was archived by the owner on Sep 21, 2022. It is now read-only.
-
Couldn't load subscription status.
- Fork 16
ModIO.APIClient.GetAllModComments
Jackson Wood edited this page Mar 6, 2019
·
7 revisions
APIClient.GetAllModComments
public static void GetAllModComments(int modId, RequestFilter filter, APIPaginationParameters pagination, Action<RequestPage<ModComment>> successCallback, Action<WebRequestError> errorCallback);
| Name | Description |
|---|---|
| modId | Mod to fetch comments for |
| 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 comments for a mod.
Get all comments posted in the mods profile. Successful request will return a RequestPage of Comment Objects.
See the mod.io filtering documentation for more comprehensive explanation of the filtering and pagination parameters.
See also: docs.mod.io page, ModIO.API.GetAllModCommentsFilterFields