Argsparse
Loading...
Searching...
No Matches
Argparse.IParser Interface Reference

Models a Parser of any context. More...

Inheritance diagram for Argparse.IParser:
Argparse.IParser< C > Argparse.Parser< C >

Public Member Functions

void ParseAndRun (IEnumerable< string > args)
 Parses command line-like input from args and then invoke the action provided to the specific parser in Run.
 
void Parse (IEnumerable< string > args)
 Parses command line-like input from args .
 
void PrintHelp (TextWriter writer)
 Prints a formatted help message to the provided output writer with information about parser usage, arguments, options, and subcommand parsers.
 
void PrintHelp ()
 Prints a formatted help message to the console with information about parser usage, arguments, options, and subcommand parsers.
 

Properties

HashSet< string > Names [get]
 
string Description [get]
 The parser description as it will appear in help.
 
string PlainArgumentsDelimiter [get]
 
ReadOnlyDictionary< string, IParserSubParsers [get]
 Returns a dictionary of all atached subparsers with keys being names of the commands attached to the parsers.
 

Detailed Description

Models a Parser of any context.

Member Function Documentation

◆ Parse()

void Argparse.IParser.Parse ( IEnumerable< string > args)

Parses command line-like input from args .

Exceptions
InvalidParserConfigurationExceptionThrown when the parser is not configured properly.
ParserConversionExceptionThrown when the parser fails to convert a value from string to the intended type.
ParserRuntimeExceptionThrown when the parser fails to run the action associated with an option, flag or argument or a parser.

Implemented in Argparse.Parser< C >.

◆ ParseAndRun()

void Argparse.IParser.ParseAndRun ( IEnumerable< string > args)

Parses command line-like input from args and then invoke the action provided to the specific parser in Run.

Exceptions
InvalidParserConfigurationExceptionThrown when the parser is not configured properly.
ParserConversionExceptionThrown when the parser fails to convert a value from string to the intended type.
ParserRuntimeExceptionThrown when the parser fails to run the action associated with an option, flag or argument or a parser.

Implemented in Argparse.Parser< C >.

◆ PrintHelp() [1/2]

void Argparse.IParser.PrintHelp ( )

Prints a formatted help message to the console with information about parser usage, arguments, options, and subcommand parsers.

Implemented in Argparse.Parser< C >.

◆ PrintHelp() [2/2]

void Argparse.IParser.PrintHelp ( TextWriter writer)

Prints a formatted help message to the provided output writer with information about parser usage, arguments, options, and subcommand parsers.

Implemented in Argparse.Parser< C >.

Property Documentation

◆ Description

string Argparse.IParser.Description
get

The parser description as it will appear in help.

Implemented in Argparse.Parser< C >.

◆ Names

HashSet<string> Argparse.IParser.Names
get

The parser name as it will appear in help and debug messages. The names must not start with "-" or "--". There must be at least one name.

Implemented in Argparse.Parser< C >.

◆ PlainArgumentsDelimiter

string Argparse.IParser.PlainArgumentsDelimiter
get

Used to configure the arguments delimiter, which when parsed gives signal to the parser to treat all subsequent tokens as plain arguments.

Implemented in Argparse.Parser< C >.

◆ SubParsers

ReadOnlyDictionary<string, IParser> Argparse.IParser.SubParsers
get

Returns a dictionary of all atached subparsers with keys being names of the commands attached to the parsers.

See <see cref="AddSubparser(string, IParser)"

Implemented in Argparse.Parser< C >.


The documentation for this interface was generated from the following file: