Enum RouteState
How a target method's detour is owned once Concord has made a routing decision about it.
public enum RouteState
Fields
Bridge = 2The target is routed through a foreign patch host, which owns its entry point.
ContestedLost = 4A foreign patcher claimed the target after Concord had detoured it, and promotion to the host failed. The host owns the entry point and Concord's injections are not running. Unlike Rejected this does not throw on later applies: the caller did nothing wrong, an unrelated mod arrived late.
Raw = 1Concord's own detour owns the target's entry point.
Rejected = 3The host refused to route the target and Concord cannot patch it. Later applies throw.
Unpinned = 0No routing decision has been made for the target yet.