Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ public interface IHttpClientLogEnricher
/// <param name="response"><see cref="HttpResponseMessage"/> object associated with the outgoing HTTP request.</param>
/// <param name="exception">An optional <see cref="Exception"/> that was thrown within the outgoing HTTP request processing.</param>
/// <remarks>
/// Please be aware that depending on the result of the HTTP request
/// the <paramref name="response"/> and <paramref name="exception"/> parameters may be <see langword="null"/>.
/// Depending on the result of the HTTP request,
/// the <paramref name="response"/> and <paramref name="exception"/> parameters might be <see langword="null"/>.
/// </remarks>
void Enrich(IEnrichmentTagCollector collector, HttpRequestMessage request, HttpResponseMessage? response, Exception? exception);
}
Loading