CommandManager(Assembly, CommandOptions) Constructor

Initializes a new instance of the CommandManager class.

Definition

Namespace: Ookii.CommandLine.Commands
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.1.1
C#
public CommandManager(
	Assembly assembly,
	CommandOptions? options = null
)

Parameters

assembly  Assembly
The assembly containing the commands.
options  CommandOptions  (Optional)
The options to use for parsing and usage help, or to use the default options.

Remarks

  Note

Once a command is created, the options 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.

Exceptions

ArgumentNullExceptionassembly is .

See Also