2 implementations of IErrorBoundaryLogger
Microsoft.AspNetCore.Components.Endpoints (1)
DependencyInjection\PrerenderingErrorBoundaryLogger.cs (1)
9internal sealed class PrerenderingErrorBoundaryLogger : IErrorBoundaryLogger
Microsoft.AspNetCore.Components.Server (1)
Circuits\RemoteErrorBoundaryLogger.cs (1)
11internal sealed partial class RemoteErrorBoundaryLogger : IErrorBoundaryLogger
3 references to IErrorBoundaryLogger
Microsoft.AspNetCore.Components.Endpoints (1)
DependencyInjection\RazorComponentsServiceCollectionExtensions.cs (1)
66services.TryAddScoped<IErrorBoundaryLogger, PrerenderingErrorBoundaryLogger>();
Microsoft.AspNetCore.Components.Server (1)
DependencyInjection\ComponentServiceCollectionExtensions.cs (1)
76services.TryAddScoped<IErrorBoundaryLogger, RemoteErrorBoundaryLogger>();
Microsoft.AspNetCore.Components.Web (1)
Web\ErrorBoundary.cs (1)
13[Inject] private IErrorBoundaryLogger? ErrorBoundaryLogger { get; set; }