IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
DiagnosticServiceCollectionExtensions.cs
Go to the documentation of this file.
1using Microsoft.Extensions.DependencyInjection;
2
4{
5
7 {
8
14 public static IServiceCollection AddToolsDiagnostics(this IServiceCollection services)
15 {
16 services.AddSingleton<DiagnosticChannelProvider>();
17 services.AddSingleton<DiagnosticFormatterProvider>();
21 services.AddSingleton<FormattedDiagnosticHandler>();
22 return services;
23 }
24
25 }
26
27}
Provides the capability to look up diagnostic channels.
Provides the capability to look up diagnostic channels.
static IServiceCollection AddToolsDiagnostics(this IServiceCollection services)
Adds the required services for diagnostics.
IDiagnosticHandler implementation that outputs based on a format specification.