MessageFilterTable<TFilterData>.Keys Property

Definition

Gets a collection of all the filters contained in the filter table.

public:
 property System::Collections::Generic::ICollection<System::ServiceModel::Dispatcher::MessageFilter ^> ^ Keys { System::Collections::Generic::ICollection<System::ServiceModel::Dispatcher::MessageFilter ^> ^ get(); };
public System.Collections.Generic.ICollection<System.ServiceModel.Dispatcher.MessageFilter> Keys { get; }
member this.Keys : System.Collections.Generic.ICollection<System.ServiceModel.Dispatcher.MessageFilter>
Public ReadOnly Property Keys As ICollection(Of MessageFilter)

Property Value

An ICollection<T> of all the filters contained in the filter table.

Implements

Remarks

This property implements Keys. The IDictionary<TKey,TValue><Filter, FilterData> that the filter table implements uses the MessageFilter as the key and the FilterData as the value of the pair.

The order of the filters returned in the collection is unspecified, but it is guaranteed to be the same order as the corresponding FilterData in the collection returned by the Values property.

Applies to