Class ParsedCommand
Represents a parsed command from a command request.
public sealed class ParsedCommand
- Inheritance
-
ParsedCommand
- Inherited Members
Constructors
ParsedCommand(Command, IEnumerable<CommandDescriptor>?)
Initializes a new instance.
public ParsedCommand(Command command, IEnumerable<CommandDescriptor>? hierarchy = null)
Parameters
command
CommandThe command.
hierarchy
IEnumerable<CommandDescriptor>The command hierarchy.
Properties
Command
The parsed raw command.
public Command Command { get; }
Property Value
Hierarchy
The parsed Command hierarchy.
public IEnumerable<CommandDescriptor>? Hierarchy { get; }