MessageFilterTable<TFilterData> Constructors
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.
Initializes a new instance of the MessageFilterTable<TFilterData> class.
Overloads
MessageFilterTable<TFilterData>() |
Initializes a new instance of the MessageFilterTable<TFilterData> class with a default priority of 0. |
MessageFilterTable<TFilterData>(Int32) |
Initializes a new instance of the MessageFilterTable<TFilterData> class with the specified initial default priority. |
MessageFilterTable<TFilterData>()
Initializes a new instance of the MessageFilterTable<TFilterData> class with a default priority of 0.
public:
MessageFilterTable();
public MessageFilterTable ();
Public Sub New ()
Remarks
The larger the integer assigned to a filter table, the higher its priority for use in inspecting messages for a match. The default priority can be specified using MessageFilterTable<TFilterData>.
Applies to
MessageFilterTable<TFilterData>(Int32)
Initializes a new instance of the MessageFilterTable<TFilterData> class with the specified initial default priority.
public:
MessageFilterTable(int defaultPriority);
public MessageFilterTable (int defaultPriority);
new System.ServiceModel.Dispatcher.MessageFilterTable<'FilterData> : int -> System.ServiceModel.Dispatcher.MessageFilterTable<'FilterData>
Public Sub New (defaultPriority As Integer)
Parameters
- defaultPriority
- Int32
The default priority for filter table.
Remarks
The larger the integer assigned to a filter table, the higher its priority for use in inspecting messages for a match. The parameterless constructor assigns a defaultPriority
of 0.