1 instantiation of HostingRequestStartingLog
Microsoft.AspNetCore.Hosting (1)
Internal\HostingApplicationDiagnostics.cs (1)
255var startLog = new HostingRequestStartingLog(context.HttpContext!);
5 references to HostingRequestStartingLog
Microsoft.AspNetCore.Hosting (5)
Internal\HostingApplication.cs (1)
143internal HostingRequestStartingLog? StartLog { get; set; }
Internal\HostingApplicationDiagnostics.cs (2)
255var startLog = new HostingRequestStartingLog(context.HttpContext!); 263formatter: HostingRequestStartingLog.Callback);
Internal\HostingRequestFinishedLog.cs (1)
10using static HostingRequestStartingLog;
Internal\HostingRequestStartingLog.cs (1)
15internal static readonly Func<object, Exception?, string> Callback = (state, exception) => ((HostingRequestStartingLog)state).ToString();