AppMetrics.DataReader.GetSessions C# (CSharp) Метод

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

public static GetSessions ( string appKey, TimePeriod period ) : List
appKey string
period TimePeriod
Результат List
        public static List<Session> GetSessions(string appKey, TimePeriod period)
        {
            var dataPath = Path.Combine(SiteConfig.DataStoragePath, appKey);
            return GetSessionsFromPath(dataPath, period);
        }