Skip to content
Concord

Enum Control

Namespace
Concord
Assembly
Concord.Emit.dll

Flow decision returned from a head injection method: continue into the original target body or cancel it.

public enum Control

Fields

Cancel = 1

Skip the original target body, like Cancel().

Continue = 0

Run the original target body.

Remarks

The numeric values are part of the lowering contract: only Continue (0) and Cancel (1) are supported values. Concord lowers the returned value into the wrapper's cancel local, so no enum value is boxed or allocated on the patched hot path.