Class NullReporter
- Namespace
- McMaster.Extensions.CommandLineUtils
- Assembly
- McMaster.Extensions.CommandLineUtils.dll
A reporter that does nothing.
public class NullReporter : IReporter
- Inheritance
-
objectNullReporter
- Implements
Properties
Singleton
A shared instance of NullReporter.
public static IReporter Singleton { get; }
Property Value
Methods
Error(string)
Report an error.
public void Error(string message)
Parameters
messagestring
Output(string)
Report console output.
public void Output(string message)
Parameters
messagestring
Verbose(string)
Report a verbose message.
public void Verbose(string message)
Parameters
messagestring
Warn(string)
Report a warning.
public void Warn(string message)
Parameters
messagestring