ActivEarth.DAO.ChallengeDAO.GetActiveDailyChallenges C# (CSharp) Метод

GetActiveDailyChallenges() публичный статический Метод

Retrieves all currently active daily challenges.
public static GetActiveDailyChallenges ( int userId ) : List
userId int Optional. UserID to load challenge progress from.
Результат List
        public static List<Challenge> GetActiveDailyChallenges(int userId = 0)
        {
            return GetActiveChallengesByDuration(1, userId);
        }