Search Results for

    Show / Hide Table of Contents

    Class ParseResult

    The result of parsing command line arguments.

    Inheritance
    System.Object
    ParseResult
    Namespace: McMaster.Extensions.CommandLineUtils.Abstractions
    Assembly: McMaster.Extensions.CommandLineUtils.dll
    Syntax
    public class ParseResult

    Constructors

    | Improve this Doc View Source

    ParseResult(CommandLineApplication)

    Initializes ParseResult.

    Declaration
    public ParseResult(CommandLineApplication selectedCommand)
    Parameters
    Type Name Description
    CommandLineApplication selectedCommand

    The command selected for execution.

    Properties

    | Improve this Doc View Source

    SelectedCommand

    The application or subcommand that matches the command line arguments.

    Declaration
    public CommandLineApplication SelectedCommand { get; set; }
    Property Value
    Type Description
    CommandLineApplication
    • Improve this Doc
    • View Source
    In This Article
    Back to top