CommandOptions Class

Provides options for the CommandManager class.

Definition

Namespace: Ookii.CommandLine.Commands
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.1.1
C#
public class CommandOptions : ParseOptions
Inheritance
Object    ParseOptions    CommandOptions

Constructors

CommandOptionsInitializes a new instance of the CommandOptions class

Properties

AllowWhiteSpaceValueSeparator Gets or sets a value indicating whether the value of arguments may be separated from the name by white space.
(Inherited from ParseOptions)
ArgumentNameComparer Gets or set the IComparerT to use to compare argument names.
(Inherited from ParseOptions)
ArgumentNamePrefixes Gets or sets the argument name prefixes to use when parsing the arguments.
(Inherited from ParseOptions)
ArgumentNameTransform Gets or sets a value that indicates how names are created for arguments that don't have an explicit name.
(Inherited from ParseOptions)
AutoHelpArgument Gets or sets a value that indicates a help argument will be automatically added.
(Inherited from ParseOptions)
AutoVersionArgument Gets or sets a value that indicates a version argument will be automatically added.
(Inherited from ParseOptions)
AutoVersionCommand Gets or sets a value that indicates whether a version command should automatically be created.
CommandFilter Gets or sets a function that filters which commands to include.
CommandNameComparer Gets or sets the IEqualityComparerT used to compare command names.
CommandNameTransform Gets or sets a value that indicates how names are created for commands that don't have an explicit name.
Culture Gets or sets the culture used to convert command line argument values from their string representation to the argument type.
(Inherited from ParseOptions)
DefaultValueDescriptions Gets or sets a dictionary containing default value descriptions for types.
(Inherited from ParseOptions)
DuplicateArguments Gets or sets a value indicating whether duplicate arguments are allowed.
(Inherited from ParseOptions)
Error Gets or sets the TextWriter used to print error information if argument parsing fails.
(Inherited from ParseOptions)
ErrorColor Gets or sets the color applied to error messages.
(Inherited from ParseOptions)
LongArgumentNamePrefix Gets or sets the argument name prefix to use for long argument names.
(Inherited from ParseOptions)
Mode Gets or sets a value that indicates the command line argument parsing rules to use.
(Inherited from ParseOptions)
NameValueSeparator Gets or sets the character used to separate the name and the value of an argument.
(Inherited from ParseOptions)
ShowUsageOnError Gets or sets a value that indicates how usage is shown after a parsing error occurred.
(Inherited from ParseOptions)
StringProvider Gets or sets the LocalizedStringProvider implementation to use to get strings for error messages and usage help.
(Inherited from ParseOptions)
StripCommandNameSuffix Gets or sets a value that will be removed from the end of a command name during name transformation.
UsageWriter Gets or sets the UsageWriter to use to create usage help.
(Inherited from ParseOptions)
UseErrorColor Gets or sets a value that indicates whether error messages should use color.
(Inherited from ParseOptions)
ValueDescriptionTransform Gets or sets a value that indicates how value descriptions derived from type names are transformed.
(Inherited from ParseOptions)
WarningColor Gets or sets the color applied to warning messages.
(Inherited from ParseOptions)

Methods

EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Merge Merges the options in this instance with the options from the ParseOptionsAttribute attribute.
(Inherited from ParseOptions)
ToStringReturns a string that represents the current object.
(Inherited from Object)

See Also