CliContextIsEmpty Method

Gets a value indicating whether current command and all its parents are specified without any subcommands, directives, options or arguments.

Note that arguments and options should be optional, if they are required (no default values), then handler will not run and missing error message will be shown.

Definition

Namespace: DotMake.CommandLine
Assembly: DotMake.CommandLine (in DotMake.CommandLine.dll) Version: 2.8.2
C#
public bool IsEmpty()

Return Value

Boolean
if current command and all its parents are specified without any subcommands, directives, options or arguments, if not.

See Also