CommandManagerOptions Property
Gets the options used by this instance.
Namespace: Ookii.CommandLine.CommandsAssembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 4.2.0+a4d3631e4dcc0970081ed435288efdebc1325f83
public CommandOptions Options { get; }
Public ReadOnly Property Options As CommandOptions
Get
Dim instance As CommandManager
Dim value As CommandOptions
value = instance.Options
public:
property CommandOptions^ Options {
CommandOptions^ get ();
}
Property Value
CommandOptions
An instance of the
CommandOptions class.
Modifying the options will change the way this instance behaves.
Once a command is created, the
ParseOptions instance may be modified
with the options of the
ParseOptionsAttribute attribute applied to the
command class. Be aware of this if reusing the same
CommandManager or
CommandOptions instance to create multiple commands.