CommandManagerOptions Property
Gets the options used by this instance.
Namespace: Ookii.CommandLine.CommandsAssembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 5.0.0+724ca9b7fa5edc075ec2ae65044e61b0d494fd1c
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.