Enum CommandOutcome
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 = 2The command was handled but routing may continue (notification semantics).
HandledStop = 1The command was handled; routing stops.
NotHandled = 0The command was not handled; routing continues.