Search Results for

    Show / Hide Table of Contents

    Interface IReporter

    Gathers messages with levels.

    Namespace: McMaster.Extensions.CommandLineUtils
    Assembly: McMaster.Extensions.CommandLineUtils.dll
    Syntax
    public interface IReporter

    Methods

    | Improve this Doc View Source

    Error(String)

    Report an error.

    Declaration
    void Error(string message)
    Parameters
    Type Name Description
    System.String message
    | Improve this Doc View Source

    Output(String)

    Report console output.

    Declaration
    void Output(string message)
    Parameters
    Type Name Description
    System.String message
    | Improve this Doc View Source

    Verbose(String)

    Report a verbose message.

    Declaration
    void Verbose(string message)
    Parameters
    Type Name Description
    System.String message
    | Improve this Doc View Source

    Warn(String)

    Report a warning.

    Declaration
    void Warn(string message)
    Parameters
    Type Name Description
    System.String message
    • Improve this Doc
    • View Source
    In This Article
    Back to top