Enum CommandRouting
Describes how a Command is being routed through the view hierarchy.
Replaces the ad-hoc boolean flags IsBubblingUp and IsBubblingDown
with a single discriminated enum.
public enum CommandRouting
Fields
Bridged = 3The command is crossing a non-containment boundary via CommandBridge.
BubblingUp = 1The command is propagating upward through the SuperView chain.
Direct = 0Direct invocation (programmatic or from this view's own bindings).
DispatchingDown = 2A SuperView is dispatching downward to a specific SubView.