3 implementations of IHttpLogEnricher
Microsoft.AspNetCore.Diagnostics.Middleware.Tests (3)
Logging\AcceptanceTests.cs (1)
756
private class ThrowingEnricher :
IHttpLogEnricher
Logging\CustomHttpLogEnricher.cs (1)
11
internal sealed class CustomHttpLogEnricher :
IHttpLogEnricher
Logging\TestHttpLogEnricher.cs (1)
11
internal sealed class TestHttpLogEnricher :
IHttpLogEnricher
5 references to IHttpLogEnricher
Microsoft.AspNetCore.Diagnostics.Middleware (5)
Logging\HttpLoggingRedactionInterceptor.cs (3)
25
private readonly
IHttpLogEnricher
[] _enrichers;
40
IEnumerable<
IHttpLogEnricher
> httpLogEnrichers,
155
foreach (
var
enricher in _enrichers)
Logging\HttpLoggingServiceCollectionExtensions.cs (2)
74
where T : class,
IHttpLogEnricher
78
.AddActivatedSingleton<
IHttpLogEnricher
, T>();