Table of Contents

Class CommandResult

Namespace
OneImlx.Terminal.Commands
Assembly
OneImlx.Terminal.dll

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 CommandCheckerResult

The result of the command checker.

runnerResult CommandRunnerResult

The result of the command runner.

Properties

CheckerResult

Gets the result of the command checker.

public CommandCheckerResult? CheckerResult { get; }

Property Value

CommandCheckerResult

RunnerResult

Gets the result of the command runner.

public CommandRunnerResult? RunnerResult { get; }

Property Value

CommandRunnerResult

Methods

EnsureCheckerResult()

Ensures that the CheckerResult is not null.

public CommandCheckerResult EnsureCheckerResult()

Returns

CommandCheckerResult

Exceptions

TerminalException

Thrown if CheckerResult is null.

EnsureRunnerResult()

Ensures that the RunnerResult is not null.

public CommandRunnerResult EnsureRunnerResult()

Returns

CommandRunnerResult

Exceptions

TerminalException

Thrown if RunnerResult is null.