AppMetrics.DataReader.GetRecords C# (CSharp) Method

GetRecords() public static method

public static GetRecords ( string appKey, TimePeriod period ) : List
appKey string
period TimePeriod
return List
        public static List<Record> GetRecords(string appKey, TimePeriod period)
        {
            var dataPath = GetSessionsDataPath(appKey);
            return GetRecordsFromPath(dataPath, period);
        }