Enum EventPriority
Order in which subscribers run for an event: Lowest first … Highest last, then Monitor. Earlier handlers shape the outcome (e.g. cancel a ICancellableEvent); Monitor handlers observe the final decision and must not modify the event.
public enum EventPriority
Fields
High = 3Highest = 4Low = 1Lowest = 0Monitor = 5Normal = 2