Enum EventPriority
Represents the priority of receiving events in an IEventDispatcher<T>.
public enum EventPriority : sbyte
Fields
Default = 0The default priority. For handlers that must receive events at the default priority.
FairlyHigh = -64A fairly high priority. For handlers that must receive events before most other handlers.
FairlyLow = 63A fairly low priority. For handlers that must receive events after most other handlers.
Highest = -128The highest priority. For handlers that must receive events first.
Lowest = 127The lowest priority. For handlers that must receive events last.