AppMetrics.DataReader.GetSessions C# (CSharp) Method

GetSessions() public static method

public static GetSessions ( string appKey, TimePeriod period ) : List
appKey string
period TimePeriod
return List
        public static List<Session> GetSessions(string appKey, TimePeriod period)
        {
            var dataPath = Path.Combine(SiteConfig.DataStoragePath, appKey);
            return GetSessionsFromPath(dataPath, period);
        }