RemoteEndpointMessageProperty Class

Definition

Makes available the client IP address and port number associated with the remote endpoint from which a message was sent.

public ref class RemoteEndpointMessageProperty sealed
public sealed class RemoteEndpointMessageProperty
type RemoteEndpointMessageProperty = class
Public NotInheritable Class RemoteEndpointMessageProperty
Inheritance
RemoteEndpointMessageProperty

Remarks

The property is added to each incoming message to a Windows Communication Foundation (WCF) service through both the HTTP and TCP transports.

The property is not present on messages received through either a named pipes or MSMQ transport.

Availability of the property when using HTTP hosted in IIS depends on having a currently active request. Therefore, this property is not available after the request has completed, such as when performing a one-way receive.

The IP address and port number are that of the node from which the message was received. If a message goes through a relay or proxy, the IP address and port number of the respective relay or proxy is the one attached to the message by this property.

Be aware that the IP address and port could be spoofed by an attacker and thus should not be relied upon for security sensitive authentication or authorization unless additional application specific logic is added.

Constructors

RemoteEndpointMessageProperty(String, Int32)

Initializes a new instance of the RemoteEndpointMessageProperty class for a specified IP address and port that identify the client from which the message was sent.

Properties

Address

Gets the IP address of the client from which the message was sent.

Name

Returns the string "System.ServiceModel.Channels.RemoteEndpointMessageProperty".

Port

Gets the port number of the client from which the message was sent.

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to