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