PrefixEndpointAddressMessageFilter Class
Represents a query that tests whether a message matches an EndpointAddress using a Longest-Prefix Match for the URI component.
System.ServiceModel.Dispatcher::MessageFilter
System.ServiceModel.Dispatcher::PrefixEndpointAddressMessageFilter
Assembly: System.ServiceModel (in System.ServiceModel.dll)
The PrefixEndpointAddressMessageFilter type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | PrefixEndpointAddressMessageFilter(EndpointAddress) | Initializes a new instance of the PrefixEndpointAddressMessageFilter class. |
![]() | PrefixEndpointAddressMessageFilter(EndpointAddress, Boolean) | Initializes a new instance of the PrefixEndpointAddressMessageFilter class. |
| Name | Description | |
|---|---|---|
![]() | Address | Gets the Endpoint Address that the PrefixEndpointAddressMessageFilter tests messages against. |
![]() | IncludeHostNameInComparison | Gets a value that indicates whether the host name is included in the endpoint address comparison. |
| Name | Description | |
|---|---|---|
![]() | CreateFilterTable<FilterData> | Creates a new filter table that tests a message against multiple endpoint addresses simultaneously. (Overrides MessageFilter::CreateFilterTable<FilterData>().) |
![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | Match(Message) | Tests whether a message satisfies the specified endpoint address. (Overrides MessageFilter::Match(Message).) |
![]() | Match(MessageBuffer) | Tests whether a buffered message satisfies the specified endpoint address. (Overrides MessageFilter::Match(MessageBuffer).) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
An EndpointAddress object includes a URI and an optional collection of addressing headers. The addressing and message headers are canonicalized to be compared for equality. If a parameter appears more than once in an EndpointAddress, the corresponding header must appear in the message at least that many times.
This filter performs the same query as EndpointAddressMessageFilter, except that the test for whether a message matches an endpoint address is done by a Longest-Prefix Match. This means that the URI specified in the filter does not have to match the message's URI exactly, but must be contained in that URI as a prefix. For example, if a filter specifies the address "www.foo.com", and a message is addressed to "www.foo.com/customerA", then the URI part of the filter query condition will be met. However, the header portion of the filter query still has to be done.
Internet Information Services (IIS) and the underlying file system (NTFS or FAT) are case-insensitive. URI comparisons done by this class are also case-insensitive. So, for example, http://www.microsoft.com is evaluated as equal to http://WWW.microsoft.com.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
