20 references to Profile
System.Web (20)
Handlers\TraceHandler.cs (5)
88(!context.Request.IsLocal && HttpRuntime.Profile.LocalOnly)) { 122if (!HttpRuntime.Profile.IsConfigEnabled) { 128IList datasets = HttpRuntime.Profile.GetData(); 132HttpRuntime.Profile.Reset(); 262tcell = AddHeaderCell(trow, SR.GetString(SR.Trace_Remaining) + " " + HttpRuntime.Profile.RequestsRemaining.ToString(NumberFormatInfo.InvariantInfo));
HttpApplication.cs (3)
1483HttpRuntime.Profile.StartRequest(_context); 2738HttpRuntime.Profile.StartRequest(_context); 2784HttpRuntime.Profile.EndRequest(_context);
HttpContext.cs (1)
487Profiler p = HttpRuntime.Profile;
HttpRuntime.cs (8)
1112Profile.RequestsToProfile = traceConfig.RequestLimit; 1113Profile.PageOutput = traceConfig.PageOutput; 1114Profile.OutputMode = TraceMode.SortByTime; 1116Profile.OutputMode = TraceMode.SortByCategory; 1118Profile.LocalOnly = traceConfig.LocalOnly; 1119Profile.IsEnabled = traceConfig.Enabled; 1120Profile.MostRecent = traceConfig.MostRecent; 1121Profile.Reset();
UI\TraceContext.cs (3)
89return HttpRuntime.Profile.OutputMode; 112return HttpRuntime.Profile.IsEnabled; 141return HttpRuntime.Profile.PageOutput;