AddressFilterMode Enumeration

 

Specifies the type of match semantics used by the dispatcher to route incoming messages to the correct endpoint.

Namespace:   System.ServiceModel
Assembly:  System.ServiceModel (in System.ServiceModel.dll)

public enum class AddressFilterMode

Member nameDescription
Any

Indicates a filter that matches on any address of an incoming message.

Exact

Indicates a filter that does an exact match on the address of an incoming message.

Prefix

Indicates a filter does the longest prefix matches on the address of an incoming message.

The value of the AddressFilterMode enumeration is set on the AddressFilterMode property.

The longest prefix match criterion specified by Prefix requires that the destination address be matched by the largest number of leading address bits in the filter. The default value is Exact.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 3.0
Return to top
Show: