You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public static void FetchModEvents(IEnumerable<int> modIdFilter, int fromTimeStamp, int untilTimeStamp, Action<List<ModEvent>> onSuccess, Action<WebRequestError> onError);
Parameters
Name
Description
modIdFilter
Filter of mod identifiers to include in the result
fromTimeStamp
Start of the time period to filter by (exclusively)
untilTimeStamp
End of the time period to filter by (inclusively)
onSuccess
Action to execute if the request succeeds
onError
Action to execute if the request returns an error
Description
Fetches all mod events for the given mod ids.
Primarily wraps APIClient.GetAllModEvents providing a convenient interface for fetching all of the results as it automatically fetches each page sequentially until all have been received.