Steamworks.SteamUserStats.RequestGlobalStats C# (CSharp) Méthode

RequestGlobalStats() public static méthode

Requests global stats data, which is available for stats marked as "aggregated".

This call is asynchronous, with the results returned in GlobalStatsReceived_t.

nHistoryDays specifies how many days of day-by-day history to retrieve in addition

to the overall totals. The limit is 60.

public static RequestGlobalStats ( int nHistoryDays ) : SteamAPICall_t
nHistoryDays int
Résultat SteamAPICall_t
		public static SteamAPICall_t RequestGlobalStats(int nHistoryDays) {
			InteropHelp.TestIfAvailableClient();
			return (SteamAPICall_t)NativeMethods.ISteamUserStats_RequestGlobalStats(nHistoryDays);
		}