Table of Contents
Specifies the priority of this hook compared to others
public class HookPriorityAttribute : System.Attribute
Inheritance System.Object System.Attribute HookPriorityAttribute
public HookPriorityAttribute(int priority=0);
priority
System.Int32
The priority to set
Represents the default level with a value of 0
public const int Default = 0;
Represents a high level with a value of 50
public const int High = 50;
Represents the higher level with a value of 100
public const int Higher = 100;
Represents a low level with a value of -50
public const int Low = -50;
Represents the lower level with a value of -100
public const int Lower = -100;
Backing priority value for sorting
public int Priority;