Interface IReporter
Gathers messages with levels.
Namespace: McMaster.Extensions.CommandLineUtils
Assembly: McMaster.Extensions.CommandLineUtils.dll
Syntax
public interface IReporter
Methods
| Improve this Doc View SourceError(String)
Report an error.
Declaration
void Error(string message)
Parameters
Type | Name | Description |
---|---|---|
System.String | message |
Output(String)
Report console output.
Declaration
void Output(string message)
Parameters
Type | Name | Description |
---|---|---|
System.String | message |
Verbose(String)
Report a verbose message.
Declaration
void Verbose(string message)
Parameters
Type | Name | Description |
---|---|---|
System.String | message |
Warn(String)
Report a warning.
Declaration
void Warn(string message)
Parameters
Type | Name | Description |
---|---|---|
System.String | message |