Enum CommandType
Defines the command type.
public enum CommandType
Fields
GroupCommand = 2
The command represents a group of sub-commands within a root.
NativeCommand = 4
The command represents a native command to the terminal. For example
cls
that clears the terminal, orrun
command that executes a native OS command.RootCommand = 1
The command represents the root command.
SubCommand = 3
The command represents a sub-command within a group.