2 implementations of IReporter
dotnet-dev-certs (2)
src\Tools\Shared\CommandLine\ConsoleReporter.cs (1)
13
public class ConsoleReporter :
IReporter
src\Tools\Shared\CommandLine\NullReporter.cs (1)
10
public class NullReporter :
IReporter
7 references to IReporter
dotnet-dev-certs (7)
Program.cs (4)
240
private static int CleanHttpsCertificates(
IReporter
reporter)
275
private static int CheckHttpsCertificate(CommandOption trust, CommandOption verbose,
IReporter
reporter)
328
private static void ReportCertificates(
IReporter
reporter, IReadOnlyList<X509Certificate2> certificates, string certificateState)
337
private static int EnsureHttpsCertificate(CommandOption exportPath, CommandOption password, CommandOption noPassword, CommandOption trust, CommandOption exportFormat,
IReporter
reporter)
ReporterEventListener.cs (2)
14
private readonly
IReporter
_reporter;
16
public ReporterEventListener(
IReporter
reporter)
src\Tools\Shared\CommandLine\NullReporter.cs (1)
15
public static
IReporter
Singleton { get; } = new NullReporter();