2 instantiations of HostingRequestStartingLog
Microsoft.AspNetCore.Hosting (1)
Internal\HostingApplicationDiagnostics.cs (1)
255var startLog = new HostingRequestStartingLog(context.HttpContext!);
Microsoft.AspNetCore.Hosting.Tests (1)
Internal\HostingRequestStartLogTests.cs (1)
30var logger = new HostingRequestStartingLog(mockContext.Object);
6 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();
Microsoft.AspNetCore.Hosting.Tests (1)
Internal\HostingRequestStartLogTests.cs (1)
30var logger = new HostingRequestStartingLog(mockContext.Object);