Class CommandResult
Represents the result of a command router.
public sealed class CommandResult
- Inheritance
-
CommandResult
- Inherited Members
Constructors
CommandResult()
Initializes a new instance of the CommandResult class.
public CommandResult()
CommandResult(CommandCheckerResult, CommandRunnerResult)
Initializes a new instance of the CommandResult class with specified checker and runner results.
public CommandResult(CommandCheckerResult checkerResult, CommandRunnerResult runnerResult)
Parameters
checkerResult
CommandCheckerResultThe result of the command checker.
runnerResult
CommandRunnerResultThe result of the command runner.
Properties
CheckerResult
Gets the result of the command checker.
public CommandCheckerResult? CheckerResult { get; }
Property Value
RunnerResult
Gets the result of the command runner.
public CommandRunnerResult? RunnerResult { get; }
Property Value
Methods
EnsureCheckerResult()
Ensures that the CheckerResult is not null.
public CommandCheckerResult EnsureCheckerResult()
Returns
Exceptions
- TerminalException
Thrown if CheckerResult is null.
EnsureRunnerResult()
Ensures that the RunnerResult is not null.
public CommandRunnerResult EnsureRunnerResult()
Returns
Exceptions
- TerminalException
Thrown if RunnerResult is null.