public string InsertPagePerformance(PagePerformance objPerformance)
        {
            TrackerModule objTracker = new TrackerModule();

            objTracker.InsertPagePerformance(objPerformance);
            return("Success");
        }
Пример #2
0
        public void GetPageLoadTime(string pagePath = null)
        {
            PagePerformance lstPagePerformance = null;

            try
            {
                lstPagePerformance = DeSerializeObject <PagePerformance>(PAGEPERFORMANCEFILEPATH);
            }
            catch
            {
            }
        }
Пример #3
0
 public void InsertPagePerformance(PagePerformance objPagePerformance)
 {
     SerializePagePerformanceObject(objPagePerformance, PAGEPERFORMANCETEMPFILEPATH);
 }