Rule.Priority Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the Rule priority, a value that indicates the order in which a Rule should be run.
public:
property int Priority { int get(); void set(int value); };
public int Priority { get; set; }
Public Property Priority As Integer
Property Value
The value that indicates the execution order in which a Rule should be run.
Remarks
Rule classes that have a higher priority value are run before lower priority Rule classes. The default Priority value for any Rule is 0. When a Rule is created with the same Priority as an existing Rule, the existing Rule is incremented. A rule Priority must be a positive value.