1 implementation of LogRequestStop
Microsoft.Extensions.Http.Diagnostics (1)
Logging\Internal\HttpClientLogger.cs (1)
132public void LogRequestStop(object? context, HttpRequestMessage request, HttpResponseMessage response, TimeSpan elapsed)
7 references to LogRequestStop
Microsoft.Extensions.Http (7)
DependencyInjection\HttpClientBuilderExtensions.Logging.cs (4)
26/// other additional handlers in the chain. <see cref="IHttpClientLogger.LogRequestStop"/> and 33/// other additional handlers in the chain, right before the primary handler. <see cref="IHttpClientLogger.LogRequestStop"/> and 88/// other additional handlers in the chain. <see cref="IHttpClientLogger.LogRequestStop"/> and 95/// other additional handlers in the chain, right before the primary handler. <see cref="IHttpClientLogger.LogRequestStop"/> and
Logging\HttpClientLoggerHandler.cs (2)
46_httpClientLogger.LogRequestStop(state, request, response, stopwatch.GetElapsedTime()); 78_httpClientLogger.LogRequestStop(state, request, response, stopwatch.GetElapsedTime());
Logging\IHttpClientLogger.cs (1)
28/// <returns>A context object that will be passed to a corresponding <see cref="LogRequestStop"/> or <see cref="LogRequestFailed"/>. Can be <see langword="null" />