Table of Contents

Enum CommandOutcome

Namespace
Terminal.Gui.Input
Assembly
Terminal.Gui.dll

Describes the outcome of a Command invocation, replacing the three-valued bool? (null = not found, false = not handled, true = handled).

public enum CommandOutcome
Extension Methods

Fields

HandledContinue = 2

The command was handled but routing may continue (notification semantics).

HandledStop = 1

The command was handled; routing stops.

NotHandled = 0

The command was not handled; routing continues.