ActionMessageFilter.CreateFilterTable<FilterData> Method
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.
Creates a new filter table that tests efficiently on message actions.
protected public:
generic <typename FilterData>
override System::ServiceModel::Dispatcher::IMessageFilterTable<FilterData> ^ CreateFilterTable();
protected internal override System.ServiceModel.Dispatcher.IMessageFilterTable<FilterData> CreateFilterTable<FilterData> ();
override this.CreateFilterTable : unit -> System.ServiceModel.Dispatcher.IMessageFilterTable<'FilterData>
Protected Friend Overrides Function CreateFilterTable(Of FilterData) () As IMessageFilterTable(Of FilterData)
Type Parameters
- FilterData
Data associated with the filters in the table.
Returns
An IMessageFilterTable<TFilterData> object to which ActionMessageFilters and associated FilterData
can be added.
Remarks
The method returns an instance of IMessageFilterTable<TFilterData>.
This method is not intended to be called directly. If you require an instance of IMessageFilterTable<TFilterData>, create one by calling a constructor on the desired type of filter table. In general, ActionMessageFilters should be added to instances of MessageFilterTable<TFilterData>.
Applies to
.NET