Argsparse
|
Public Member Functions | |
void | PrintHelp (IParserHelpFormatter< C > formatter) |
Prints a formatted help message to the console with information about parser usage, arguments, options, and subcommand parsers as formatted by the provided formatter . | |
void | PrintHelp (IParserHelpFormatter< C > formatter, TextWriter writer) |
Prints a formatted help message to the provided output TextWriter with information about parser usage, arguments, options, and subcommand parsers as formatted by the provided formatter | |
IParser< C > | AddSubparser (IParser commandParser) |
Attach a subparser to this parser as a subcommand. The subparser is then triggered and used to parse the rest of the input after one of the names of the subparser tokens is found in input. | |
IParser< C > | AddFlag (Flag< C > flag) |
Attach a flag-like option to the parser. | |
IParser< C > | AddFlags (params Flag< C >[] flags) |
Attach one or more flag-like options to the parser. | |
IParser< C > | AddOption (IOption< C > option) |
Attach a value option to the parser. | |
IParser< C > | AddOptions (params IOption< C >[] options) |
Attach one or more value options to the parser. | |
IParser< C > | AddArgument (IArgument< C > argument) |
Attach a plain argument to the parser. | |
IParser< C > | AddArguments (params IArgument< C >[] arguments) |
Attach one or more plain arguments to the parser. | |
![]() | |
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 | |
ReadOnlyCollection< Flag< C > > | Flags [get] |
Returns all flag-like options attached to the parser via the methods AddFlag(Flag<C>) and AddFlags(Flag<C>[]). | |
C? | Config [get] |
ReadOnlyCollection< IOption< C > > | Options [get] |
Returns all value options attached to the parser via the methods AddFlag(Flag<C>) and AddFlags(Flag<C>[]). | |
ReadOnlyCollection< IArgument< C > > | Arguments [get] |
Returns all plain arguments attached to the parser via the methods AddArgument(IArgument<C>)) and AddArguments(IArgument<C>[]). | |
![]() | |
HashSet< string > | Names [get] |
string | Description [get] |
The parser description as it will appear in help. | |
string | PlainArgumentsDelimiter [get] |
ReadOnlyDictionary< string, IParser > | SubParsers [get] |
Returns a dictionary of all atached subparsers with keys being names of the commands attached to the parsers. | |
IParser< C > Argparse.IParser< C >.AddArgument | ( | IArgument< C > | argument | ) |
Attach a plain argument to the parser.
To attach more plain arguments at once, use AddArguments(IArgument<C>[]).
See also
.
InvalidParserConfigurationException | If the argument comes after an argument with multiplicity set to ArgumentMultiplicity.AllThatFollow |
Implemented in Argparse.Parser< C >, and Argparse.Parser< C >.
IParser< C > Argparse.IParser< C >.AddArguments | ( | params IArgument< C >[] | arguments | ) |
Attach one or more plain arguments to the parser.
See also
.
InvalidParserConfigurationException | If there is an argument which comes after an argument with multiplicity set to ArgumentMultiplicity.AllThatFollow |
Implemented in Argparse.Parser< C >, and Argparse.Parser< C >.
IParser< C > Argparse.IParser< C >.AddFlag | ( | Flag< C > | flag | ) |
Attach a flag-like option to the parser.
To attach more Flag<C> objects at once, see AddFlags(Flag<C>[])
InvalidParserConfigurationException | On invalid parser configuration, e.g. duplicate flag name |
Implemented in Argparse.Parser< C >, and Argparse.Parser< C >.
IParser< C > Argparse.IParser< C >.AddFlags | ( | params Flag< C >[] | flags | ) |
Attach one or more flag-like options to the parser.
See also
.
InvalidParserConfigurationException | On invalid parser configuration, e.g. duplicate flag name |
Implemented in Argparse.Parser< C >, and Argparse.Parser< C >.
IParser< C > Argparse.IParser< C >.AddOption | ( | IOption< C > | option | ) |
Attach a value option to the parser.
To attach more IOption<C,V> objects at once, see AddOptions(IOption<C>[])
See also
InvalidParserConfigurationException | On invalid parser configuration, e.g. duplicate option name |
Implemented in Argparse.Parser< C >, and Argparse.Parser< C >.
IParser< C > Argparse.IParser< C >.AddOptions | ( | params IOption< C >[] | options | ) |
Attach one or more value options to the parser.
See also
,
InvalidParserConfigurationException | On invalid parser configuration, e.g. duplicate option name |
Implemented in Argparse.Parser< C >, and Argparse.Parser< C >.
IParser< C > Argparse.IParser< C >.AddSubparser | ( | IParser | commandParser | ) |
Attach a subparser to this parser as a subcommand. The subparser is then triggered and used to parse the rest of the input after one of the names of the subparser tokens is found in input.
See Parser<C>.
commandParser | Parser to attach. |
Implemented in Argparse.Parser< C >, and Argparse.Parser< C >.
void Argparse.IParser< C >.PrintHelp | ( | IParserHelpFormatter< C > | formatter | ) |
Prints a formatted help message to the console with information about parser usage, arguments, options, and subcommand parsers as formatted by the provided formatter .
Implemented in Argparse.Parser< C >.
void Argparse.IParser< C >.PrintHelp | ( | IParserHelpFormatter< C > | formatter, |
TextWriter | writer ) |
Prints a formatted help message to the provided output TextWriter
with information about parser usage, arguments, options, and subcommand parsers as formatted by the provided formatter
Implemented in Argparse.Parser< C >.
|
get |
Returns all plain arguments attached to the parser via the methods AddArgument(IArgument<C>)) and AddArguments(IArgument<C>[]).
See also
.
Implemented in Argparse.Parser< C >.
|
get |
Config context instance. Either passed to the parser in the constructor or created by the parser right before parsing of input.
Implemented in Argparse.Parser< C >.
|
get |
Returns all flag-like options attached to the parser via the methods AddFlag(Flag<C>) and AddFlags(Flag<C>[]).
Implemented in Argparse.Parser< C >.
|
get |
Returns all value options attached to the parser via the methods AddFlag(Flag<C>) and AddFlags(Flag<C>[]).
See also
.
Implemented in Argparse.Parser< C >.