MessageFilterTable<TFilterData>.DefaultPriority Property

Definition

Gets or sets the default priority for the filter table.

public:
 property int DefaultPriority { int get(); void set(int value); };
[System.Runtime.Serialization.DataMember]
public int DefaultPriority { get; set; }
[<System.Runtime.Serialization.DataMember>]
member this.DefaultPriority : int with get, set
Public Property DefaultPriority As Integer

Property Value

The default priority assigned by filters added to the filter table. The default value for the default priority is 0.

Attributes

Remarks

The default priority is the priority automatically assigned a filter added to the filter table if no priority is explicitly specified. The priority of a filter is an integer value used to group filters into buckets that are used to order their processing. The larger the integer assigned to a filter type, the higher its priority for processing. All the filter tables in a priority bucket are evaluated together. Lower priority buckets are only evaluated if higher priority buckets do not provide any matches.

Applies to