FilterType Enum

Definition

Specifies the type of filter to use when routing messages.

public enum class FilterType
public enum FilterType
type FilterType = 
Public Enum FilterType
Inheritance
FilterType

Fields

Action 0

Use ActionMessageFilter to filter on an action.

And 3

Use StrictAndMessageFilter to filter on two message filters, ANDed together.

Custom 4

Use a user-defined filter.

EndpointAddress 1

Use EndpointAddressMessageFilter with IncludeHostNameInComparison set to false to filter on the address.

EndpointName 5

Use the EndpointNameMessageFilter to filter on the name of the service endpoint.

MatchAll 6

Use the MatchAllMessageFilter to match all messages.

PrefixEndpointAddress 2

Use PrefixEndpointAddressMessageFilter with IncludeHostNameInComparison set to false to filter on the address using longest prefix matching.

XPath 7

Use the XPathMessageFilter to filter on an XPath expression.

Remarks

For more information about using FilterType, see FilterData.

Applies to