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