EndpointAddressMessageFilter Class
Represents a query that tests whether a message satisfies the requirements of a specified endpoint address.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
System.ServiceModel.Dispatcher.MessageFilter
System.ServiceModel.Dispatcher.EndpointAddressMessageFilter
| Name | Description | |
|---|---|---|
![]() | EndpointAddressMessageFilter(EndpointAddress) | Initializes a new instance of the EndpointAddressMessageFilter class with a specified address against which to test a message. |
![]() | EndpointAddressMessageFilter(EndpointAddress, Boolean) | Initializes a new instance of the EndpointAddressMessageFilter class. |
| Name | Description | |
|---|---|---|
![]() | Address | Gets the address that the EndpointAddressMessageFilter 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 the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | 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() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
This filter tests whether a message satisfies a particular endpoint address. An EndpointAddress object includes a URI and an optional collection of addressing headers. The addressing and message headers are canonicalized in order 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.
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.
Available since 3.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


