CommandLine
|
▼CAttribute | |
CCommandLine.OptionAttribute | Models an option specification. |
▼CCommandLine.Text.MultilineTextAttribute | Provides base properties for creating an attribute, used to define multiple lines of text. |
CCommandLine.Text.AssemblyLicenseAttribute | Models a multiline assembly license text. |
CCommandLine.Text.AssemblyUsageAttribute | Models a multiline assembly usage text. |
CCommandLine.ValueAttribute | Models an value specification, or better how to handle values not bound to options. |
CCommandLine.VerbAttribute | Models a verb command specification. |
CCommandLine.Text.CopyrightInfo | Models the copyright part of an help text. You can assign it where you assign any System.String instance. |
CCommandLine.Text.HeadingInfo | Models the heading part of an help text. You can assign it where you assign any System.String instance. |
CCommandLine.Text.HelpText | Provides means to format an help screen. You can assign it in place of a System.String instance. |
▼CIDisposable | |
CCommandLine.Parser | Provides methods to parse command line arguments. |
CCommandLine.ParserSettings | Provides settings for CommandLine.Parser. Once consumed cannot be reused. |
▼CIEquatable | |
▼CCommandLine.Error | Base type of all errors. |
CCommandLine.HelpRequestedError | Models an error generated when a user explicit requests help. |
CCommandLine.HelpVerbRequestedError | Models an error generated when a user explicit requests help in verb commands scenario. |
▼CCommandLine.NamedError | Base type of all erros with name information. |
CCommandLine.BadFormatConversionError | Models an error generated when a value conversion fails. |
CCommandLine.MissingRequiredOptionError | Models an error generated when a required option is required. |
CCommandLine.MissingValueOptionError | Models an error generated when an option lacks its value. |
CCommandLine.MutuallyExclusiveSetError | Models an error generated when a an option from another set is defined. |
CCommandLine.SequenceOutOfRangeError | Models an error generated when a sequence value lacks elements. |
CCommandLine.NoVerbSelectedError | Models an error generated when no verb is selected. |
▼CCommandLine.TokenError | Base type of all errors related to bad token detection. |
CCommandLine.BadFormatTokenError | Models an error generated when an invalid token is detected. |
CCommandLine.BadVerbSelectedError | Models an error generated when an unknown verb is detected. |
CCommandLine.UnknownOptionError | Models an error generated when an unknown option is detected. |
CCommandLine.NamedError | Base type of all erros with name information. |
CCommandLine.NameInfo | Models name information, used in CommandLine.Error instances. |
CCommandLine.TokenError | Base type of all errors related to bad token detection. |
▼CIEquatable< ParserResult< T >> | |
CCommandLine.ParserResult< T > | Models a parser result. It contains an instance of type T with parsed values and a sequence of CommandLine.Error. |
CCommandLine.NullInstance | Models a null result when constructing a ParserResult{T} in a faling verbs scenario. |
CCommandLine.Text.SentenceBuilder | Exposes standard delegates to provide a mean to customize part of help screen generation. This type is consumed by CommandLine.Text.HelpText. |