FilterTableEntryElement.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 a value that specifies the priority of this entry.
public:
property int Priority { int get(); void set(int value); };
[System.Configuration.ConfigurationProperty("priority", DefaultValue=0, Options=System.Configuration.ConfigurationPropertyOptions.None)]
public int Priority { get; set; }
[<System.Configuration.ConfigurationProperty("priority", DefaultValue=0, Options=System.Configuration.ConfigurationPropertyOptions.None)>]
member this.Priority : int with get, set
Public Property Priority As Integer
Property Value
The priority of this entry. The default value is 0.
- Attributes
Remarks
The entries in the filter table are evaluated based on priority, with 0 being the lowest priority. All entries for a specific priority are evaluated simultaneously, if no matching entry is found for the current priority, the next priority level is evaluated.
This value is optional.